diff --git a/MemoApp/.buckconfig b/MemoApp/.buckconfig new file mode 100644 index 0000000..934256c --- /dev/null +++ b/MemoApp/.buckconfig @@ -0,0 +1,6 @@ + +[android] + target = Google Inc.:Google APIs:23 + +[maven_repositories] + central = https://repo1.maven.org/maven2 diff --git a/MemoApp/.eslintrc.js b/MemoApp/.eslintrc.js new file mode 100644 index 0000000..40c6dcd --- /dev/null +++ b/MemoApp/.eslintrc.js @@ -0,0 +1,4 @@ +module.exports = { + root: true, + extends: '@react-native-community', +}; diff --git a/MemoApp/.flowconfig b/MemoApp/.flowconfig new file mode 100644 index 0000000..4afc766 --- /dev/null +++ b/MemoApp/.flowconfig @@ -0,0 +1,75 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore "BUCK" generated dirs +/\.buckd/ + +; Ignore polyfills +node_modules/react-native/Libraries/polyfills/.* + +; These should not be required directly +; require from fbjs/lib instead: require('fbjs/lib/warning') +node_modules/warning/.* + +; Flow doesn't support platforms +.*/Libraries/Utilities/LoadingView.js + +[untyped] +.*/node_modules/@react-native-community/cli/.*/.* + +[include] + +[libs] +node_modules/react-native/Libraries/react-native/react-native-interface.js +node_modules/react-native/flow/ + +[options] +emoji=true + +esproposal.optional_chaining=enable +esproposal.nullish_coalescing=enable + +module.file_ext=.js +module.file_ext=.json +module.file_ext=.ios.js + +munge_underscores=true + +module.name_mapper='^react-native$' -> '/node_modules/react-native/Libraries/react-native/react-native-implementation' +module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' +module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FlowFixMeProps +suppress_type=$FlowFixMeState + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +[lints] +sketchy-null-number=warn +sketchy-null-mixed=warn +sketchy-number=warn +untyped-type-import=warn +nonstrict-import=warn +deprecated-type=warn +unsafe-getters-setters=warn +inexact-spread=warn +unnecessary-invariant=warn +signature-verification-failure=warn +deprecated-utility=error + +[strict] +deprecated-type +nonstrict-import +sketchy-null +unclear-type +unsafe-getters-setters +untyped-import +untyped-type-import + +[version] +^0.105.0 diff --git a/MemoApp/.gitattributes b/MemoApp/.gitattributes new file mode 100644 index 0000000..d42ff18 --- /dev/null +++ b/MemoApp/.gitattributes @@ -0,0 +1 @@ +*.pbxproj -text diff --git a/MemoApp/.gitignore b/MemoApp/.gitignore new file mode 100644 index 0000000..ad572e6 --- /dev/null +++ b/MemoApp/.gitignore @@ -0,0 +1,59 @@ +# OSX +# +.DS_Store + +# Xcode +# +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate + +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml + +# node.js +# +node_modules/ +npm-debug.log +yarn-error.log + +# BUCK +buck-out/ +\.buckd/ +*.keystore +!debug.keystore + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/ + +*/fastlane/report.xml +*/fastlane/Preview.html +*/fastlane/screenshots + +# Bundle artifact +*.jsbundle + +# CocoaPods +/ios/Pods/ diff --git a/MemoApp/.prettierrc.js b/MemoApp/.prettierrc.js new file mode 100644 index 0000000..5c4de1a --- /dev/null +++ b/MemoApp/.prettierrc.js @@ -0,0 +1,6 @@ +module.exports = { + bracketSpacing: false, + jsxBracketSameLine: true, + singleQuote: true, + trailingComma: 'all', +}; diff --git a/MemoApp/.watchmanconfig b/MemoApp/.watchmanconfig new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/MemoApp/.watchmanconfig @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/MemoApp/App.js b/MemoApp/App.js new file mode 100644 index 0000000..bb77580 --- /dev/null +++ b/MemoApp/App.js @@ -0,0 +1,114 @@ +/** + * Sample React Native App + * https://github.com/facebook/react-native + * + * @format + * @flow + */ + +import React from 'react'; +import { + SafeAreaView, + StyleSheet, + ScrollView, + View, + Text, + StatusBar, +} from 'react-native'; + +import { + Header, + LearnMoreLinks, + Colors, + DebugInstructions, + ReloadInstructions, +} from 'react-native/Libraries/NewAppScreen'; + +const App: () => React$Node = () => { + return ( + <> + + + +
+ {global.HermesInternal == null ? null : ( + + Engine: Hermes + + )} + + + Step One + + Edit App.js to change this + screen and then come back to see your edits. + + + + See Your Changes + + + + + + Debug + + + + + + Learn More + + Read the docs to discover what to do next: + + + + + + + + ); +}; + +const styles = StyleSheet.create({ + scrollView: { + backgroundColor: Colors.lighter, + }, + engine: { + position: 'absolute', + right: 0, + }, + body: { + backgroundColor: Colors.white, + }, + sectionContainer: { + marginTop: 32, + paddingHorizontal: 24, + }, + sectionTitle: { + fontSize: 24, + fontWeight: '600', + color: Colors.black, + }, + sectionDescription: { + marginTop: 8, + fontSize: 18, + fontWeight: '400', + color: Colors.dark, + }, + highlight: { + fontWeight: '700', + }, + footer: { + color: Colors.dark, + fontSize: 12, + fontWeight: '600', + padding: 4, + paddingRight: 12, + textAlign: 'right', + }, +}); + +export default App; diff --git a/MemoApp/Thumbs.db b/MemoApp/Thumbs.db new file mode 100644 index 0000000..982449a Binary files /dev/null and b/MemoApp/Thumbs.db differ diff --git a/MemoApp/__tests__/App-test.js b/MemoApp/__tests__/App-test.js new file mode 100644 index 0000000..1784766 --- /dev/null +++ b/MemoApp/__tests__/App-test.js @@ -0,0 +1,14 @@ +/** + * @format + */ + +import 'react-native'; +import React from 'react'; +import App from '../App'; + +// Note: test renderer must be required after react-native. +import renderer from 'react-test-renderer'; + +it('renders correctly', () => { + renderer.create(); +}); diff --git a/MemoApp/android/.gradle/5.5/executionHistory/executionHistory.bin b/MemoApp/android/.gradle/5.5/executionHistory/executionHistory.bin new file mode 100644 index 0000000..b2ad884 Binary files /dev/null and b/MemoApp/android/.gradle/5.5/executionHistory/executionHistory.bin differ diff --git a/MemoApp/android/.gradle/5.5/executionHistory/executionHistory.lock b/MemoApp/android/.gradle/5.5/executionHistory/executionHistory.lock new file mode 100644 index 0000000..61b8b7a Binary files /dev/null and b/MemoApp/android/.gradle/5.5/executionHistory/executionHistory.lock differ diff --git a/MemoApp/android/.gradle/5.5/fileChanges/last-build.bin b/MemoApp/android/.gradle/5.5/fileChanges/last-build.bin new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/MemoApp/android/.gradle/5.5/fileChanges/last-build.bin differ diff --git a/MemoApp/android/.gradle/5.5/fileContent/fileContent.lock b/MemoApp/android/.gradle/5.5/fileContent/fileContent.lock new file mode 100644 index 0000000..eb25cea Binary files /dev/null and b/MemoApp/android/.gradle/5.5/fileContent/fileContent.lock differ diff --git a/MemoApp/android/.gradle/5.5/fileHashes/fileHashes.bin b/MemoApp/android/.gradle/5.5/fileHashes/fileHashes.bin new file mode 100644 index 0000000..2d0232f Binary files /dev/null and b/MemoApp/android/.gradle/5.5/fileHashes/fileHashes.bin differ diff --git a/MemoApp/android/.gradle/5.5/fileHashes/fileHashes.lock b/MemoApp/android/.gradle/5.5/fileHashes/fileHashes.lock new file mode 100644 index 0000000..c367568 Binary files /dev/null and b/MemoApp/android/.gradle/5.5/fileHashes/fileHashes.lock differ diff --git a/MemoApp/android/.gradle/5.5/fileHashes/resourceHashesCache.bin b/MemoApp/android/.gradle/5.5/fileHashes/resourceHashesCache.bin new file mode 100644 index 0000000..e28c521 Binary files /dev/null and b/MemoApp/android/.gradle/5.5/fileHashes/resourceHashesCache.bin differ diff --git a/MemoApp/android/.gradle/5.5/gc.properties b/MemoApp/android/.gradle/5.5/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/MemoApp/android/.gradle/5.5/javaCompile/classAnalysis.bin b/MemoApp/android/.gradle/5.5/javaCompile/classAnalysis.bin new file mode 100644 index 0000000..fc31358 Binary files /dev/null and b/MemoApp/android/.gradle/5.5/javaCompile/classAnalysis.bin differ diff --git a/MemoApp/android/.gradle/5.5/javaCompile/javaCompile.lock b/MemoApp/android/.gradle/5.5/javaCompile/javaCompile.lock new file mode 100644 index 0000000..9a324a0 Binary files /dev/null and b/MemoApp/android/.gradle/5.5/javaCompile/javaCompile.lock differ diff --git a/MemoApp/android/.gradle/5.5/javaCompile/taskHistory.bin b/MemoApp/android/.gradle/5.5/javaCompile/taskHistory.bin new file mode 100644 index 0000000..533f27c Binary files /dev/null and b/MemoApp/android/.gradle/5.5/javaCompile/taskHistory.bin differ diff --git a/MemoApp/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/MemoApp/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock new file mode 100644 index 0000000..1ad30fa Binary files /dev/null and b/MemoApp/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/MemoApp/android/.gradle/buildOutputCleanup/cache.properties b/MemoApp/android/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..3e9cd71 --- /dev/null +++ b/MemoApp/android/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Fri Oct 18 18:06:48 EEST 2019 +gradle.version=5.5 diff --git a/MemoApp/android/.gradle/buildOutputCleanup/outputFiles.bin b/MemoApp/android/.gradle/buildOutputCleanup/outputFiles.bin new file mode 100644 index 0000000..6120362 Binary files /dev/null and b/MemoApp/android/.gradle/buildOutputCleanup/outputFiles.bin differ diff --git a/MemoApp/android/.gradle/vcs-1/gc.properties b/MemoApp/android/.gradle/vcs-1/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/appcompat/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/appcompat/R.java new file mode 100644 index 0000000..9907c5a --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/appcompat/R.java @@ -0,0 +1,1637 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.appcompat; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f020000; + public static final int actionBarItemBackground = 0x7f020001; + public static final int actionBarPopupTheme = 0x7f020002; + public static final int actionBarSize = 0x7f020003; + public static final int actionBarSplitStyle = 0x7f020004; + public static final int actionBarStyle = 0x7f020005; + public static final int actionBarTabBarStyle = 0x7f020006; + public static final int actionBarTabStyle = 0x7f020007; + public static final int actionBarTabTextStyle = 0x7f020008; + public static final int actionBarTheme = 0x7f020009; + public static final int actionBarWidgetTheme = 0x7f02000a; + public static final int actionButtonStyle = 0x7f02000b; + public static final int actionDropDownStyle = 0x7f02000c; + public static final int actionLayout = 0x7f02000d; + public static final int actionMenuTextAppearance = 0x7f02000e; + public static final int actionMenuTextColor = 0x7f02000f; + public static final int actionModeBackground = 0x7f020010; + public static final int actionModeCloseButtonStyle = 0x7f020011; + public static final int actionModeCloseDrawable = 0x7f020012; + public static final int actionModeCopyDrawable = 0x7f020013; + public static final int actionModeCutDrawable = 0x7f020014; + public static final int actionModeFindDrawable = 0x7f020015; + public static final int actionModePasteDrawable = 0x7f020016; + public static final int actionModePopupWindowStyle = 0x7f020017; + public static final int actionModeSelectAllDrawable = 0x7f020018; + public static final int actionModeShareDrawable = 0x7f020019; + public static final int actionModeSplitBackground = 0x7f02001a; + public static final int actionModeStyle = 0x7f02001b; + public static final int actionModeWebSearchDrawable = 0x7f02001c; + public static final int actionOverflowButtonStyle = 0x7f02001d; + public static final int actionOverflowMenuStyle = 0x7f02001e; + public static final int actionProviderClass = 0x7f02001f; + public static final int actionViewClass = 0x7f020020; + public static final int activityChooserViewStyle = 0x7f020021; + public static final int alertDialogButtonGroupStyle = 0x7f020025; + public static final int alertDialogCenterButtons = 0x7f020026; + public static final int alertDialogStyle = 0x7f020027; + public static final int alertDialogTheme = 0x7f020028; + public static final int allowStacking = 0x7f020029; + public static final int alpha = 0x7f02002a; + public static final int alphabeticModifiers = 0x7f02002b; + public static final int arrowHeadLength = 0x7f02002c; + public static final int arrowShaftLength = 0x7f02002d; + public static final int autoCompleteTextViewStyle = 0x7f02002e; + public static final int autoSizeMaxTextSize = 0x7f02002f; + public static final int autoSizeMinTextSize = 0x7f020030; + public static final int autoSizePresetSizes = 0x7f020031; + public static final int autoSizeStepGranularity = 0x7f020032; + public static final int autoSizeTextType = 0x7f020033; + public static final int background = 0x7f020034; + public static final int backgroundSplit = 0x7f020036; + public static final int backgroundStacked = 0x7f020037; + public static final int backgroundTint = 0x7f020038; + public static final int backgroundTintMode = 0x7f020039; + public static final int barLength = 0x7f02003a; + public static final int borderlessButtonStyle = 0x7f02003b; + public static final int buttonBarButtonStyle = 0x7f02003c; + public static final int buttonBarNegativeButtonStyle = 0x7f02003d; + public static final int buttonBarNeutralButtonStyle = 0x7f02003e; + public static final int buttonBarPositiveButtonStyle = 0x7f02003f; + public static final int buttonBarStyle = 0x7f020040; + public static final int buttonGravity = 0x7f020041; + public static final int buttonIconDimen = 0x7f020042; + public static final int buttonPanelSideLayout = 0x7f020043; + public static final int buttonStyle = 0x7f020044; + public static final int buttonStyleSmall = 0x7f020045; + public static final int buttonTint = 0x7f020046; + public static final int buttonTintMode = 0x7f020047; + public static final int checkboxStyle = 0x7f020048; + public static final int checkedTextViewStyle = 0x7f020049; + public static final int closeIcon = 0x7f02004a; + public static final int closeItemLayout = 0x7f02004b; + public static final int collapseContentDescription = 0x7f02004c; + public static final int collapseIcon = 0x7f02004d; + public static final int color = 0x7f02004e; + public static final int colorAccent = 0x7f02004f; + public static final int colorBackgroundFloating = 0x7f020050; + public static final int colorButtonNormal = 0x7f020051; + public static final int colorControlActivated = 0x7f020052; + public static final int colorControlHighlight = 0x7f020053; + public static final int colorControlNormal = 0x7f020054; + public static final int colorError = 0x7f020055; + public static final int colorPrimary = 0x7f020056; + public static final int colorPrimaryDark = 0x7f020057; + public static final int colorSwitchThumbNormal = 0x7f020058; + public static final int commitIcon = 0x7f020059; + public static final int contentDescription = 0x7f02005a; + public static final int contentInsetEnd = 0x7f02005b; + public static final int contentInsetEndWithActions = 0x7f02005c; + public static final int contentInsetLeft = 0x7f02005d; + public static final int contentInsetRight = 0x7f02005e; + public static final int contentInsetStart = 0x7f02005f; + public static final int contentInsetStartWithNavigation = 0x7f020060; + public static final int controlBackground = 0x7f020061; + public static final int coordinatorLayoutStyle = 0x7f020062; + public static final int customNavigationLayout = 0x7f020063; + public static final int defaultQueryHint = 0x7f020064; + public static final int dialogCornerRadius = 0x7f020065; + public static final int dialogPreferredPadding = 0x7f020066; + public static final int dialogTheme = 0x7f020067; + public static final int displayOptions = 0x7f020068; + public static final int divider = 0x7f020069; + public static final int dividerHorizontal = 0x7f02006a; + public static final int dividerPadding = 0x7f02006b; + public static final int dividerVertical = 0x7f02006c; + public static final int drawableSize = 0x7f02006d; + public static final int drawerArrowStyle = 0x7f02006e; + public static final int dropDownListViewStyle = 0x7f02006f; + public static final int dropdownListPreferredItemHeight = 0x7f020070; + public static final int editTextBackground = 0x7f020071; + public static final int editTextColor = 0x7f020072; + public static final int editTextStyle = 0x7f020073; + public static final int elevation = 0x7f020074; + public static final int expandActivityOverflowButtonDrawable = 0x7f020075; + public static final int firstBaselineToTopHeight = 0x7f020079; + public static final int font = 0x7f02007a; + public static final int fontFamily = 0x7f02007b; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int gapBetweenBars = 0x7f020085; + public static final int goIcon = 0x7f020086; + public static final int height = 0x7f020087; + public static final int hideOnContentScroll = 0x7f020088; + public static final int homeAsUpIndicator = 0x7f020089; + public static final int homeLayout = 0x7f02008a; + public static final int icon = 0x7f02008b; + public static final int iconTint = 0x7f02008c; + public static final int iconTintMode = 0x7f02008d; + public static final int iconifiedByDefault = 0x7f02008e; + public static final int imageButtonStyle = 0x7f02008f; + public static final int indeterminateProgressStyle = 0x7f020090; + public static final int initialActivityCount = 0x7f020091; + public static final int isLightTheme = 0x7f020092; + public static final int itemPadding = 0x7f020093; + public static final int keylines = 0x7f020094; + public static final int lastBaselineToBottomHeight = 0x7f020095; + public static final int layout = 0x7f020096; + public static final int layout_anchor = 0x7f020097; + public static final int layout_anchorGravity = 0x7f020098; + public static final int layout_behavior = 0x7f020099; + public static final int layout_dodgeInsetEdges = 0x7f02009a; + public static final int layout_insetEdge = 0x7f02009b; + public static final int layout_keyline = 0x7f02009c; + public static final int lineHeight = 0x7f02009d; + public static final int listChoiceBackgroundIndicator = 0x7f02009e; + public static final int listDividerAlertDialog = 0x7f02009f; + public static final int listItemLayout = 0x7f0200a0; + public static final int listLayout = 0x7f0200a1; + public static final int listMenuViewStyle = 0x7f0200a2; + public static final int listPopupWindowStyle = 0x7f0200a3; + public static final int listPreferredItemHeight = 0x7f0200a4; + public static final int listPreferredItemHeightLarge = 0x7f0200a5; + public static final int listPreferredItemHeightSmall = 0x7f0200a6; + public static final int listPreferredItemPaddingLeft = 0x7f0200a7; + public static final int listPreferredItemPaddingRight = 0x7f0200a8; + public static final int logo = 0x7f0200a9; + public static final int logoDescription = 0x7f0200aa; + public static final int maxButtonHeight = 0x7f0200ab; + public static final int measureWithLargestChild = 0x7f0200ac; + public static final int multiChoiceItemLayout = 0x7f0200ad; + public static final int navigationContentDescription = 0x7f0200ae; + public static final int navigationIcon = 0x7f0200af; + public static final int navigationMode = 0x7f0200b0; + public static final int numericModifiers = 0x7f0200b1; + public static final int overlapAnchor = 0x7f0200b2; + public static final int paddingBottomNoButtons = 0x7f0200b4; + public static final int paddingEnd = 0x7f0200b5; + public static final int paddingStart = 0x7f0200b6; + public static final int paddingTopNoTitle = 0x7f0200b7; + public static final int panelBackground = 0x7f0200b8; + public static final int panelMenuListTheme = 0x7f0200b9; + public static final int panelMenuListWidth = 0x7f0200ba; + public static final int popupMenuStyle = 0x7f0200bd; + public static final int popupTheme = 0x7f0200be; + public static final int popupWindowStyle = 0x7f0200bf; + public static final int preserveIconSpacing = 0x7f0200c0; + public static final int progressBarPadding = 0x7f0200c5; + public static final int progressBarStyle = 0x7f0200c6; + public static final int queryBackground = 0x7f0200c7; + public static final int queryHint = 0x7f0200c8; + public static final int radioButtonStyle = 0x7f0200c9; + public static final int ratingBarStyle = 0x7f0200ca; + public static final int ratingBarStyleIndicator = 0x7f0200cb; + public static final int ratingBarStyleSmall = 0x7f0200cc; + public static final int searchHintIcon = 0x7f0200dd; + public static final int searchIcon = 0x7f0200de; + public static final int searchViewStyle = 0x7f0200df; + public static final int seekBarStyle = 0x7f0200e0; + public static final int selectableItemBackground = 0x7f0200e1; + public static final int selectableItemBackgroundBorderless = 0x7f0200e2; + public static final int showAsAction = 0x7f0200e3; + public static final int showDividers = 0x7f0200e4; + public static final int showText = 0x7f0200e5; + public static final int showTitle = 0x7f0200e6; + public static final int singleChoiceItemLayout = 0x7f0200e7; + public static final int spinBars = 0x7f0200e8; + public static final int spinnerDropDownItemStyle = 0x7f0200e9; + public static final int spinnerStyle = 0x7f0200ea; + public static final int splitTrack = 0x7f0200eb; + public static final int srcCompat = 0x7f0200ec; + public static final int state_above_anchor = 0x7f0200ed; + public static final int statusBarBackground = 0x7f0200ee; + public static final int subMenuArrow = 0x7f0200ef; + public static final int submitBackground = 0x7f0200f0; + public static final int subtitle = 0x7f0200f1; + public static final int subtitleTextAppearance = 0x7f0200f2; + public static final int subtitleTextColor = 0x7f0200f3; + public static final int subtitleTextStyle = 0x7f0200f4; + public static final int suggestionRowLayout = 0x7f0200f5; + public static final int switchMinWidth = 0x7f0200f6; + public static final int switchPadding = 0x7f0200f7; + public static final int switchStyle = 0x7f0200f8; + public static final int switchTextAppearance = 0x7f0200f9; + public static final int textAllCaps = 0x7f0200fa; + public static final int textAppearanceLargePopupMenu = 0x7f0200fb; + public static final int textAppearanceListItem = 0x7f0200fc; + public static final int textAppearanceListItemSecondary = 0x7f0200fd; + public static final int textAppearanceListItemSmall = 0x7f0200fe; + public static final int textAppearancePopupMenuHeader = 0x7f0200ff; + public static final int textAppearanceSearchResultSubtitle = 0x7f020100; + public static final int textAppearanceSearchResultTitle = 0x7f020101; + public static final int textAppearanceSmallPopupMenu = 0x7f020102; + public static final int textColorAlertDialogListItem = 0x7f020103; + public static final int textColorSearchUrl = 0x7f020104; + public static final int theme = 0x7f020105; + public static final int thickness = 0x7f020106; + public static final int thumbTextPadding = 0x7f020107; + public static final int thumbTint = 0x7f020108; + public static final int thumbTintMode = 0x7f020109; + public static final int tickMark = 0x7f02010a; + public static final int tickMarkTint = 0x7f02010b; + public static final int tickMarkTintMode = 0x7f02010c; + public static final int tint = 0x7f02010d; + public static final int tintMode = 0x7f02010e; + public static final int title = 0x7f02010f; + public static final int titleMargin = 0x7f020110; + public static final int titleMarginBottom = 0x7f020111; + public static final int titleMarginEnd = 0x7f020112; + public static final int titleMarginStart = 0x7f020113; + public static final int titleMarginTop = 0x7f020114; + public static final int titleMargins = 0x7f020115; + public static final int titleTextAppearance = 0x7f020116; + public static final int titleTextColor = 0x7f020117; + public static final int titleTextStyle = 0x7f020118; + public static final int toolbarNavigationButtonStyle = 0x7f020119; + public static final int toolbarStyle = 0x7f02011a; + public static final int tooltipForegroundColor = 0x7f02011b; + public static final int tooltipFrameBackground = 0x7f02011c; + public static final int tooltipText = 0x7f02011d; + public static final int track = 0x7f02011e; + public static final int trackTint = 0x7f02011f; + public static final int trackTintMode = 0x7f020120; + public static final int ttcIndex = 0x7f020121; + public static final int viewInflaterClass = 0x7f020123; + public static final int voiceIcon = 0x7f020124; + public static final int windowActionBar = 0x7f020125; + public static final int windowActionBarOverlay = 0x7f020126; + public static final int windowActionModeOverlay = 0x7f020127; + public static final int windowFixedHeightMajor = 0x7f020128; + public static final int windowFixedHeightMinor = 0x7f020129; + public static final int windowFixedWidthMajor = 0x7f02012a; + public static final int windowFixedWidthMinor = 0x7f02012b; + public static final int windowMinWidthMajor = 0x7f02012c; + public static final int windowMinWidthMinor = 0x7f02012d; + public static final int windowNoTitle = 0x7f02012e; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f030000; + public static final int abc_allow_stacked_button_bar = 0x7f030001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f030002; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f040001; + public static final int abc_btn_colored_borderless_text_material = 0x7f040002; + public static final int abc_btn_colored_text_material = 0x7f040003; + public static final int abc_color_highlight_material = 0x7f040004; + public static final int abc_hint_foreground_material_dark = 0x7f040005; + public static final int abc_hint_foreground_material_light = 0x7f040006; + public static final int abc_input_method_navigation_guard = 0x7f040007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f040008; + public static final int abc_primary_text_disable_only_material_light = 0x7f040009; + public static final int abc_primary_text_material_dark = 0x7f04000a; + public static final int abc_primary_text_material_light = 0x7f04000b; + public static final int abc_search_url_text = 0x7f04000c; + public static final int abc_search_url_text_normal = 0x7f04000d; + public static final int abc_search_url_text_pressed = 0x7f04000e; + public static final int abc_search_url_text_selected = 0x7f04000f; + public static final int abc_secondary_text_material_dark = 0x7f040010; + public static final int abc_secondary_text_material_light = 0x7f040011; + public static final int abc_tint_btn_checkable = 0x7f040012; + public static final int abc_tint_default = 0x7f040013; + public static final int abc_tint_edittext = 0x7f040014; + public static final int abc_tint_seek_thumb = 0x7f040015; + public static final int abc_tint_spinner = 0x7f040016; + public static final int abc_tint_switch_track = 0x7f040017; + public static final int accent_material_dark = 0x7f040018; + public static final int accent_material_light = 0x7f040019; + public static final int background_floating_material_dark = 0x7f04001a; + public static final int background_floating_material_light = 0x7f04001b; + public static final int background_material_dark = 0x7f04001c; + public static final int background_material_light = 0x7f04001d; + public static final int bright_foreground_disabled_material_dark = 0x7f04001e; + public static final int bright_foreground_disabled_material_light = 0x7f04001f; + public static final int bright_foreground_inverse_material_dark = 0x7f040020; + public static final int bright_foreground_inverse_material_light = 0x7f040021; + public static final int bright_foreground_material_dark = 0x7f040022; + public static final int bright_foreground_material_light = 0x7f040023; + public static final int button_material_dark = 0x7f040024; + public static final int button_material_light = 0x7f040025; + public static final int dim_foreground_disabled_material_dark = 0x7f040027; + public static final int dim_foreground_disabled_material_light = 0x7f040028; + public static final int dim_foreground_material_dark = 0x7f040029; + public static final int dim_foreground_material_light = 0x7f04002a; + public static final int error_color_material_dark = 0x7f04002b; + public static final int error_color_material_light = 0x7f04002c; + public static final int foreground_material_dark = 0x7f04002d; + public static final int foreground_material_light = 0x7f04002e; + public static final int highlighted_text_material_dark = 0x7f04002f; + public static final int highlighted_text_material_light = 0x7f040030; + public static final int material_blue_grey_800 = 0x7f040031; + public static final int material_blue_grey_900 = 0x7f040032; + public static final int material_blue_grey_950 = 0x7f040033; + public static final int material_deep_teal_200 = 0x7f040034; + public static final int material_deep_teal_500 = 0x7f040035; + public static final int material_grey_100 = 0x7f040036; + public static final int material_grey_300 = 0x7f040037; + public static final int material_grey_50 = 0x7f040038; + public static final int material_grey_600 = 0x7f040039; + public static final int material_grey_800 = 0x7f04003a; + public static final int material_grey_850 = 0x7f04003b; + public static final int material_grey_900 = 0x7f04003c; + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int primary_dark_material_dark = 0x7f04003f; + public static final int primary_dark_material_light = 0x7f040040; + public static final int primary_material_dark = 0x7f040041; + public static final int primary_material_light = 0x7f040042; + public static final int primary_text_default_material_dark = 0x7f040043; + public static final int primary_text_default_material_light = 0x7f040044; + public static final int primary_text_disabled_material_dark = 0x7f040045; + public static final int primary_text_disabled_material_light = 0x7f040046; + public static final int ripple_material_dark = 0x7f040047; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_dark = 0x7f040049; + public static final int secondary_text_default_material_light = 0x7f04004a; + public static final int secondary_text_disabled_material_dark = 0x7f04004b; + public static final int secondary_text_disabled_material_light = 0x7f04004c; + public static final int switch_thumb_disabled_material_dark = 0x7f04004d; + public static final int switch_thumb_disabled_material_light = 0x7f04004e; + public static final int switch_thumb_material_dark = 0x7f04004f; + public static final int switch_thumb_material_light = 0x7f040050; + public static final int switch_thumb_normal_material_dark = 0x7f040051; + public static final int switch_thumb_normal_material_light = 0x7f040052; + public static final int tooltip_background_dark = 0x7f040053; + public static final int tooltip_background_light = 0x7f040054; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f050000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f050001; + public static final int abc_action_bar_default_height_material = 0x7f050002; + public static final int abc_action_bar_default_padding_end_material = 0x7f050003; + public static final int abc_action_bar_default_padding_start_material = 0x7f050004; + public static final int abc_action_bar_elevation_material = 0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008; + public static final int abc_action_bar_stacked_max_height = 0x7f050009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000c; + public static final int abc_action_button_min_height_material = 0x7f05000d; + public static final int abc_action_button_min_width_material = 0x7f05000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f05000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f050010; + public static final int abc_alert_dialog_button_dimen = 0x7f050011; + public static final int abc_button_inset_horizontal_material = 0x7f050012; + public static final int abc_button_inset_vertical_material = 0x7f050013; + public static final int abc_button_padding_horizontal_material = 0x7f050014; + public static final int abc_button_padding_vertical_material = 0x7f050015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f050016; + public static final int abc_config_prefDialogWidth = 0x7f050017; + public static final int abc_control_corner_material = 0x7f050018; + public static final int abc_control_inset_material = 0x7f050019; + public static final int abc_control_padding_material = 0x7f05001a; + public static final int abc_dialog_corner_radius_material = 0x7f05001b; + public static final int abc_dialog_fixed_height_major = 0x7f05001c; + public static final int abc_dialog_fixed_height_minor = 0x7f05001d; + public static final int abc_dialog_fixed_width_major = 0x7f05001e; + public static final int abc_dialog_fixed_width_minor = 0x7f05001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f050020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f050021; + public static final int abc_dialog_min_width_major = 0x7f050022; + public static final int abc_dialog_min_width_minor = 0x7f050023; + public static final int abc_dialog_padding_material = 0x7f050024; + public static final int abc_dialog_padding_top_material = 0x7f050025; + public static final int abc_dialog_title_divider_material = 0x7f050026; + public static final int abc_disabled_alpha_material_dark = 0x7f050027; + public static final int abc_disabled_alpha_material_light = 0x7f050028; + public static final int abc_dropdownitem_icon_width = 0x7f050029; + public static final int abc_dropdownitem_text_padding_left = 0x7f05002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f05002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f05002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f05002d; + public static final int abc_edit_text_inset_top_material = 0x7f05002e; + public static final int abc_floating_window_z = 0x7f05002f; + public static final int abc_list_item_padding_horizontal_material = 0x7f050030; + public static final int abc_panel_menu_list_width = 0x7f050031; + public static final int abc_progress_bar_height_material = 0x7f050032; + public static final int abc_search_view_preferred_height = 0x7f050033; + public static final int abc_search_view_preferred_width = 0x7f050034; + public static final int abc_seekbar_track_background_height_material = 0x7f050035; + public static final int abc_seekbar_track_progress_height_material = 0x7f050036; + public static final int abc_select_dialog_padding_start_material = 0x7f050037; + public static final int abc_switch_padding = 0x7f050038; + public static final int abc_text_size_body_1_material = 0x7f050039; + public static final int abc_text_size_body_2_material = 0x7f05003a; + public static final int abc_text_size_button_material = 0x7f05003b; + public static final int abc_text_size_caption_material = 0x7f05003c; + public static final int abc_text_size_display_1_material = 0x7f05003d; + public static final int abc_text_size_display_2_material = 0x7f05003e; + public static final int abc_text_size_display_3_material = 0x7f05003f; + public static final int abc_text_size_display_4_material = 0x7f050040; + public static final int abc_text_size_headline_material = 0x7f050041; + public static final int abc_text_size_large_material = 0x7f050042; + public static final int abc_text_size_medium_material = 0x7f050043; + public static final int abc_text_size_menu_header_material = 0x7f050044; + public static final int abc_text_size_menu_material = 0x7f050045; + public static final int abc_text_size_small_material = 0x7f050046; + public static final int abc_text_size_subhead_material = 0x7f050047; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f050048; + public static final int abc_text_size_title_material = 0x7f050049; + public static final int abc_text_size_title_material_toolbar = 0x7f05004a; + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int disabled_alpha_material_dark = 0x7f050052; + public static final int disabled_alpha_material_light = 0x7f050053; + public static final int highlight_alpha_material_colored = 0x7f050054; + public static final int highlight_alpha_material_dark = 0x7f050055; + public static final int highlight_alpha_material_light = 0x7f050056; + public static final int hint_alpha_material_dark = 0x7f050057; + public static final int hint_alpha_material_light = 0x7f050058; + public static final int hint_pressed_alpha_material_dark = 0x7f050059; + public static final int hint_pressed_alpha_material_light = 0x7f05005a; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + public static final int tooltip_corner_radius = 0x7f05006a; + public static final int tooltip_horizontal_padding = 0x7f05006b; + public static final int tooltip_margin = 0x7f05006c; + public static final int tooltip_precise_anchor_extra_offset = 0x7f05006d; + public static final int tooltip_precise_anchor_threshold = 0x7f05006e; + public static final int tooltip_vertical_padding = 0x7f05006f; + public static final int tooltip_y_offset_non_touch = 0x7f050070; + public static final int tooltip_y_offset_touch = 0x7f050071; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060000; + public static final int abc_action_bar_item_background_material = 0x7f060001; + public static final int abc_btn_borderless_material = 0x7f060002; + public static final int abc_btn_check_material = 0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060005; + public static final int abc_btn_colored_material = 0x7f060006; + public static final int abc_btn_default_mtrl_shape = 0x7f060007; + public static final int abc_btn_radio_material = 0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000c; + public static final int abc_cab_background_internal_bg = 0x7f06000d; + public static final int abc_cab_background_top_material = 0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f06000f; + public static final int abc_control_background_material = 0x7f060010; + public static final int abc_dialog_material_background = 0x7f060011; + public static final int abc_edit_text_material = 0x7f060012; + public static final int abc_ic_ab_back_material = 0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060014; + public static final int abc_ic_clear_material = 0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060016; + public static final int abc_ic_go_search_api_material = 0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f060019; + public static final int abc_ic_menu_overflow_material = 0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f06001d; + public static final int abc_ic_search_api_material = 0x7f06001e; + public static final int abc_ic_star_black_16dp = 0x7f06001f; + public static final int abc_ic_star_black_36dp = 0x7f060020; + public static final int abc_ic_star_black_48dp = 0x7f060021; + public static final int abc_ic_star_half_black_16dp = 0x7f060022; + public static final int abc_ic_star_half_black_36dp = 0x7f060023; + public static final int abc_ic_star_half_black_48dp = 0x7f060024; + public static final int abc_ic_voice_search_api_material = 0x7f060025; + public static final int abc_item_background_holo_dark = 0x7f060026; + public static final int abc_item_background_holo_light = 0x7f060027; + public static final int abc_list_divider_material = 0x7f060028; + public static final int abc_list_divider_mtrl_alpha = 0x7f060029; + public static final int abc_list_focused_holo = 0x7f06002a; + public static final int abc_list_longpressed_holo = 0x7f06002b; + public static final int abc_list_pressed_holo_dark = 0x7f06002c; + public static final int abc_list_pressed_holo_light = 0x7f06002d; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f06002e; + public static final int abc_list_selector_background_transition_holo_light = 0x7f06002f; + public static final int abc_list_selector_disabled_holo_dark = 0x7f060030; + public static final int abc_list_selector_disabled_holo_light = 0x7f060031; + public static final int abc_list_selector_holo_dark = 0x7f060032; + public static final int abc_list_selector_holo_light = 0x7f060033; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060034; + public static final int abc_popup_background_mtrl_mult = 0x7f060035; + public static final int abc_ratingbar_indicator_material = 0x7f060036; + public static final int abc_ratingbar_material = 0x7f060037; + public static final int abc_ratingbar_small_material = 0x7f060038; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f06003a; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003b; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003c; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f06003d; + public static final int abc_seekbar_thumb_material = 0x7f06003e; + public static final int abc_seekbar_tick_mark_material = 0x7f06003f; + public static final int abc_seekbar_track_material = 0x7f060040; + public static final int abc_spinner_mtrl_am_alpha = 0x7f060041; + public static final int abc_spinner_textfield_background_material = 0x7f060042; + public static final int abc_switch_thumb_material = 0x7f060043; + public static final int abc_switch_track_mtrl_alpha = 0x7f060044; + public static final int abc_tab_indicator_material = 0x7f060045; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f060046; + public static final int abc_text_cursor_material = 0x7f060047; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f060048; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f06004a; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004c; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f06004d; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f06004e; + public static final int abc_textfield_default_mtrl_alpha = 0x7f06004f; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f060050; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060051; + public static final int abc_textfield_search_material = 0x7f060052; + public static final int abc_vector_test = 0x7f060053; + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + public static final int tooltip_frame_dark = 0x7f060061; + public static final int tooltip_frame_light = 0x7f060062; + } + public static final class id { + private id() {} + + public static final int action_bar = 0x7f07000c; + public static final int action_bar_activity_content = 0x7f07000d; + public static final int action_bar_container = 0x7f07000e; + public static final int action_bar_root = 0x7f07000f; + public static final int action_bar_spinner = 0x7f070010; + public static final int action_bar_subtitle = 0x7f070011; + public static final int action_bar_title = 0x7f070012; + public static final int action_container = 0x7f070013; + public static final int action_context_bar = 0x7f070014; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_menu_divider = 0x7f070017; + public static final int action_menu_presenter = 0x7f070018; + public static final int action_mode_bar = 0x7f070019; + public static final int action_mode_bar_stub = 0x7f07001a; + public static final int action_mode_close_button = 0x7f07001b; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int activity_chooser_view_content = 0x7f07001e; + public static final int add = 0x7f07001f; + public static final int alertTitle = 0x7f070020; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int bottom = 0x7f070026; + public static final int buttonPanel = 0x7f070027; + public static final int checkbox = 0x7f07002e; + public static final int chronometer = 0x7f07002f; + public static final int content = 0x7f070033; + public static final int contentPanel = 0x7f070034; + public static final int custom = 0x7f070035; + public static final int customPanel = 0x7f070036; + public static final int decor_content_parent = 0x7f070037; + public static final int default_activity_button = 0x7f070038; + public static final int edit_query = 0x7f07003a; + public static final int end = 0x7f07003b; + public static final int expand_activities_button = 0x7f07003c; + public static final int expanded_menu = 0x7f07003d; + public static final int forever = 0x7f070047; + public static final int group_divider = 0x7f070049; + public static final int home = 0x7f07004a; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int image = 0x7f07004f; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int left = 0x7f070052; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int listMode = 0x7f070055; + public static final int list_item = 0x7f070056; + public static final int message = 0x7f070057; + public static final int multiply = 0x7f070059; + public static final int none = 0x7f07005b; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int parentPanel = 0x7f070060; + public static final int progress_circular = 0x7f070061; + public static final int progress_horizontal = 0x7f070062; + public static final int radio = 0x7f070063; + public static final int right = 0x7f070065; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int screen = 0x7f070071; + public static final int scrollIndicatorDown = 0x7f070072; + public static final int scrollIndicatorUp = 0x7f070073; + public static final int scrollView = 0x7f070074; + public static final int search_badge = 0x7f070075; + public static final int search_bar = 0x7f070076; + public static final int search_button = 0x7f070077; + public static final int search_close_btn = 0x7f070078; + public static final int search_edit_frame = 0x7f070079; + public static final int search_go_btn = 0x7f07007a; + public static final int search_mag_icon = 0x7f07007b; + public static final int search_plate = 0x7f07007c; + public static final int search_src_text = 0x7f07007d; + public static final int search_voice_btn = 0x7f07007e; + public static final int select_dialog_listview = 0x7f07007f; + public static final int shortcut = 0x7f070080; + public static final int spacer = 0x7f070084; + public static final int split_action_bar = 0x7f070085; + public static final int src_atop = 0x7f070086; + public static final int src_in = 0x7f070087; + public static final int src_over = 0x7f070088; + public static final int start = 0x7f070089; + public static final int submenuarrow = 0x7f07008a; + public static final int submit_area = 0x7f07008b; + public static final int tabMode = 0x7f07008c; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int textSpacerNoButtons = 0x7f070092; + public static final int textSpacerNoTitle = 0x7f070093; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + public static final int titleDividerNoCustom = 0x7f070096; + public static final int title_template = 0x7f070097; + public static final int top = 0x7f070098; + public static final int topPanel = 0x7f070099; + public static final int uniform = 0x7f07009a; + public static final int up = 0x7f07009b; + public static final int wrap_content = 0x7f0700a0; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f080000; + public static final int abc_config_activityShortDur = 0x7f080001; + public static final int cancel_button_image_alpha = 0x7f080002; + public static final int config_tooltipAnimTime = 0x7f080003; + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f090000; + public static final int abc_action_bar_up_container = 0x7f090001; + public static final int abc_action_menu_item_layout = 0x7f090002; + public static final int abc_action_menu_layout = 0x7f090003; + public static final int abc_action_mode_bar = 0x7f090004; + public static final int abc_action_mode_close_item_material = 0x7f090005; + public static final int abc_activity_chooser_view = 0x7f090006; + public static final int abc_activity_chooser_view_list_item = 0x7f090007; + public static final int abc_alert_dialog_button_bar_material = 0x7f090008; + public static final int abc_alert_dialog_material = 0x7f090009; + public static final int abc_alert_dialog_title_material = 0x7f09000a; + public static final int abc_cascading_menu_item_layout = 0x7f09000b; + public static final int abc_dialog_title_material = 0x7f09000c; + public static final int abc_expanded_menu_layout = 0x7f09000d; + public static final int abc_list_menu_item_checkbox = 0x7f09000e; + public static final int abc_list_menu_item_icon = 0x7f09000f; + public static final int abc_list_menu_item_layout = 0x7f090010; + public static final int abc_list_menu_item_radio = 0x7f090011; + public static final int abc_popup_menu_header_item_layout = 0x7f090012; + public static final int abc_popup_menu_item_layout = 0x7f090013; + public static final int abc_screen_content_include = 0x7f090014; + public static final int abc_screen_simple = 0x7f090015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f090016; + public static final int abc_screen_toolbar = 0x7f090017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f090018; + public static final int abc_search_view = 0x7f090019; + public static final int abc_select_dialog_material = 0x7f09001a; + public static final int abc_tooltip = 0x7f09001b; + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + public static final int select_dialog_item_material = 0x7f090027; + public static final int select_dialog_multichoice_material = 0x7f090028; + public static final int select_dialog_singlechoice_material = 0x7f090029; + public static final int support_simple_spinner_dropdown_item = 0x7f09002a; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0b0000; + public static final int abc_action_bar_up_description = 0x7f0b0001; + public static final int abc_action_menu_overflow_description = 0x7f0b0002; + public static final int abc_action_mode_done = 0x7f0b0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0b0004; + public static final int abc_activitychooserview_choose_application = 0x7f0b0005; + public static final int abc_capital_off = 0x7f0b0006; + public static final int abc_capital_on = 0x7f0b0007; + public static final int abc_font_family_body_1_material = 0x7f0b0008; + public static final int abc_font_family_body_2_material = 0x7f0b0009; + public static final int abc_font_family_button_material = 0x7f0b000a; + public static final int abc_font_family_caption_material = 0x7f0b000b; + public static final int abc_font_family_display_1_material = 0x7f0b000c; + public static final int abc_font_family_display_2_material = 0x7f0b000d; + public static final int abc_font_family_display_3_material = 0x7f0b000e; + public static final int abc_font_family_display_4_material = 0x7f0b000f; + public static final int abc_font_family_headline_material = 0x7f0b0010; + public static final int abc_font_family_menu_material = 0x7f0b0011; + public static final int abc_font_family_subhead_material = 0x7f0b0012; + public static final int abc_font_family_title_material = 0x7f0b0013; + public static final int abc_menu_alt_shortcut_label = 0x7f0b0014; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0b0015; + public static final int abc_menu_delete_shortcut_label = 0x7f0b0016; + public static final int abc_menu_enter_shortcut_label = 0x7f0b0017; + public static final int abc_menu_function_shortcut_label = 0x7f0b0018; + public static final int abc_menu_meta_shortcut_label = 0x7f0b0019; + public static final int abc_menu_shift_shortcut_label = 0x7f0b001a; + public static final int abc_menu_space_shortcut_label = 0x7f0b001b; + public static final int abc_menu_sym_shortcut_label = 0x7f0b001c; + public static final int abc_prepend_shortcut_label = 0x7f0b001d; + public static final int abc_search_hint = 0x7f0b001e; + public static final int abc_searchview_description_clear = 0x7f0b001f; + public static final int abc_searchview_description_query = 0x7f0b0020; + public static final int abc_searchview_description_search = 0x7f0b0021; + public static final int abc_searchview_description_submit = 0x7f0b0022; + public static final int abc_searchview_description_voice = 0x7f0b0023; + public static final int abc_shareactionprovider_share_with = 0x7f0b0024; + public static final int abc_shareactionprovider_share_with_application = 0x7f0b0025; + public static final int abc_toolbar_collapse_description = 0x7f0b0026; + public static final int search_menu_title = 0x7f0b0052; + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0c0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0c0001; + public static final int Animation_AppCompat_Dialog = 0x7f0c0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0c0003; + public static final int Animation_AppCompat_Tooltip = 0x7f0c0004; + public static final int Base_AlertDialog_AppCompat = 0x7f0c0007; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0c0008; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0c0009; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0c000a; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f0c000b; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0c000d; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0c000c; + public static final int Base_TextAppearance_AppCompat = 0x7f0c000e; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0c000f; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0c0010; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0c0011; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0c0012; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0c0013; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0c0014; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0c0015; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0c0016; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0c0017; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0c0018; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0c0019; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0c001a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c001b; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c001c; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0c001d; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0c001e; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0c001f; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0c0020; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c0021; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0c0022; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0c0023; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0c0024; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0c0025; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c0026; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0c0027; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0c0028; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0c0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c0030; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0c0031; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0c0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0c0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0c0034; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c0035; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0c0036; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c0038; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0c0039; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c003a; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c003b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c003c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c003d; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0c004c; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0c004d; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0c004e; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c004f; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0c0050; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0c0051; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0c0052; + public static final int Base_Theme_AppCompat = 0x7f0c003e; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0c003f; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0c0040; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0c0044; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0c0041; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0c0042; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0c0043; + public static final int Base_Theme_AppCompat_Light = 0x7f0c0045; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0c0046; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0c0047; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c004b; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0c0048; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0c0049; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0c004a; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0c0057; + public static final int Base_V21_Theme_AppCompat = 0x7f0c0053; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0c0054; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0c0055; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0c0056; + public static final int Base_V22_Theme_AppCompat = 0x7f0c0058; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0c0059; + public static final int Base_V23_Theme_AppCompat = 0x7f0c005a; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0c005b; + public static final int Base_V26_Theme_AppCompat = 0x7f0c005c; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f0c005d; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0c005e; + public static final int Base_V28_Theme_AppCompat = 0x7f0c005f; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f0c0060; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0c0065; + public static final int Base_V7_Theme_AppCompat = 0x7f0c0061; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0c0062; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0c0063; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0c0064; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0066; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0c0067; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0c0068; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0c0069; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0c006a; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0c006b; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0c006c; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0c006d; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0c006e; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0c006f; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0c0070; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0c0071; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0c0072; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0073; + public static final int Base_Widget_AppCompat_Button = 0x7f0c0074; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0c007a; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0c007b; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0c0075; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0c0076; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0c0077; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0c0078; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0c0079; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0c007c; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0c007d; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0c007e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0c007f; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0c0080; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0c0081; + public static final int Base_Widget_AppCompat_EditText = 0x7f0c0082; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0c0083; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0c0084; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c0085; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c0086; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0087; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0088; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c0089; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0c008a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c008b; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0c008c; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0c008d; + public static final int Base_Widget_AppCompat_ListView = 0x7f0c008e; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0c008f; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0c0090; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0c0091; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0092; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0c0093; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0c0094; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c0095; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0c0096; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0c0097; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0c0098; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0c0099; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0c009a; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0c009b; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0c009c; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0c009d; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0c009e; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0c009f; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0c00a0; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c00a1; + public static final int Platform_AppCompat = 0x7f0c00a8; + public static final int Platform_AppCompat_Light = 0x7f0c00a9; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0c00aa; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0c00ab; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0c00ac; + public static final int Platform_V21_AppCompat = 0x7f0c00ad; + public static final int Platform_V21_AppCompat_Light = 0x7f0c00ae; + public static final int Platform_V25_AppCompat = 0x7f0c00af; + public static final int Platform_V25_AppCompat_Light = 0x7f0c00b0; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0c00b1; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0c00b2; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0c00b3; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0c00b4; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0c00b5; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0c00b6; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0c00b7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0c00b8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0c00b9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0c00ba; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0c00c0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0c00bb; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0c00bc; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0c00bd; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0c00be; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0c00bf; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0c00c1; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0c00c2; + public static final int TextAppearance_AppCompat = 0x7f0c00c7; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0c00c8; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0c00c9; + public static final int TextAppearance_AppCompat_Button = 0x7f0c00ca; + public static final int TextAppearance_AppCompat_Caption = 0x7f0c00cb; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0c00cc; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0c00cd; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0c00ce; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0c00cf; + public static final int TextAppearance_AppCompat_Headline = 0x7f0c00d0; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0c00d1; + public static final int TextAppearance_AppCompat_Large = 0x7f0c00d2; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0c00d3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0c00d4; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0c00d5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c00d6; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c00d7; + public static final int TextAppearance_AppCompat_Medium = 0x7f0c00d8; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0c00d9; + public static final int TextAppearance_AppCompat_Menu = 0x7f0c00da; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c00db; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0c00dc; + public static final int TextAppearance_AppCompat_Small = 0x7f0c00dd; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0c00de; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0c00df; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c00e0; + public static final int TextAppearance_AppCompat_Title = 0x7f0c00e1; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0c00e2; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f0c00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c00e5; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c00e6; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c00e7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c00e9; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0c00ea; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c00eb; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0c00ec; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0c00ed; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0c00ee; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0c00ef; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0c00f0; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c00f1; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0c00f2; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c00f3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c00f4; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0c00f5; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c00f6; + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c00fc; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c00fd; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c00fe; + public static final int ThemeOverlay_AppCompat = 0x7f0c011c; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0c011d; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0c011e; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c011f; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0c0120; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0c0121; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0c0122; + public static final int Theme_AppCompat = 0x7f0c0100; + public static final int Theme_AppCompat_CompactMenu = 0x7f0c0101; + public static final int Theme_AppCompat_DayNight = 0x7f0c0102; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0c0103; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0c0104; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0c0107; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0c0105; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0c0106; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0c0108; + public static final int Theme_AppCompat_Dialog = 0x7f0c0109; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0c010c; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0c010a; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0c010b; + public static final int Theme_AppCompat_Light = 0x7f0c010d; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0c010e; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0c010f; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c0112; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0c0110; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0c0111; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0c0113; + public static final int Theme_AppCompat_NoActionBar = 0x7f0c0114; + public static final int Widget_AppCompat_ActionBar = 0x7f0c0123; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0c0124; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0c0125; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0c0126; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0c0127; + public static final int Widget_AppCompat_ActionButton = 0x7f0c0128; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0c0129; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0c012a; + public static final int Widget_AppCompat_ActionMode = 0x7f0c012b; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0c012c; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0c012d; + public static final int Widget_AppCompat_Button = 0x7f0c012e; + public static final int Widget_AppCompat_ButtonBar = 0x7f0c0134; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0c0135; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0c012f; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0c0130; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0c0131; + public static final int Widget_AppCompat_Button_Colored = 0x7f0c0132; + public static final int Widget_AppCompat_Button_Small = 0x7f0c0133; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0c0136; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0c0137; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0c0138; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0c0139; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0c013a; + public static final int Widget_AppCompat_EditText = 0x7f0c013b; + public static final int Widget_AppCompat_ImageButton = 0x7f0c013c; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0c013d; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c013e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0c013f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c0140; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0c0141; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0142; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0143; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c0144; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0c0145; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0c0146; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0c0147; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0c0148; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0c0149; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0c014a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0c014b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0c014c; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0c014d; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0c014e; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0c014f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c0150; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0c0151; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0c0152; + public static final int Widget_AppCompat_ListMenuView = 0x7f0c0153; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0c0154; + public static final int Widget_AppCompat_ListView = 0x7f0c0155; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0c0156; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0c0157; + public static final int Widget_AppCompat_PopupMenu = 0x7f0c0158; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0159; + public static final int Widget_AppCompat_PopupWindow = 0x7f0c015a; + public static final int Widget_AppCompat_ProgressBar = 0x7f0c015b; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c015c; + public static final int Widget_AppCompat_RatingBar = 0x7f0c015d; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0c015e; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0c015f; + public static final int Widget_AppCompat_SearchView = 0x7f0c0160; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0c0161; + public static final int Widget_AppCompat_SeekBar = 0x7f0c0162; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0c0163; + public static final int Widget_AppCompat_Spinner = 0x7f0c0164; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0c0165; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0c0166; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0c0167; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0c0168; + public static final int Widget_AppCompat_Toolbar = 0x7f0c0169; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c016a; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout = 0x7f0c016d; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f020034, 0x7f020036, 0x7f020037, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020063, 0x7f020068, 0x7f020069, 0x7f020074, 0x7f020087, 0x7f020088, 0x7f020089, 0x7f02008a, 0x7f02008b, 0x7f020090, 0x7f020093, 0x7f0200a9, 0x7f0200b0, 0x7f0200be, 0x7f0200c5, 0x7f0200c6, 0x7f0200f1, 0x7f0200f4, 0x7f02010f, 0x7f020118 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f020034, 0x7f020036, 0x7f02004b, 0x7f020087, 0x7f0200f4, 0x7f020118 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f020075, 0x7f020091 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f020042, 0x7f020043, 0x7f0200a0, 0x7f0200a1, 0x7f0200ad, 0x7f0200e6, 0x7f0200e7 }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AnimatedStateListDrawableCompat = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int[] AnimatedStateListDrawableItem = { 0x10100d0, 0x1010199 }; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int[] AnimatedStateListDrawableTransition = { 0x1010199, 0x1010449, 0x101044a, 0x101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f0200ec, 0x7f02010d, 0x7f02010e }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f02010a, 0x7f02010b, 0x7f02010c }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f02002f, 0x7f020030, 0x7f020031, 0x7f020032, 0x7f020033, 0x7f020079, 0x7f02007b, 0x7f020095, 0x7f02009d, 0x7f0200fa }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_firstBaselineToTopHeight = 6; + public static final int AppCompatTextView_fontFamily = 7; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 8; + public static final int AppCompatTextView_lineHeight = 9; + public static final int AppCompatTextView_textAllCaps = 10; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020025, 0x7f020026, 0x7f020027, 0x7f020028, 0x7f02002e, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f02003f, 0x7f020040, 0x7f020044, 0x7f020045, 0x7f020048, 0x7f020049, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020057, 0x7f020058, 0x7f020061, 0x7f020065, 0x7f020066, 0x7f020067, 0x7f02006a, 0x7f02006c, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073, 0x7f020089, 0x7f02008f, 0x7f02009e, 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bd, 0x7f0200bf, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200df, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e9, 0x7f0200ea, 0x7f0200f8, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f020100, 0x7f020101, 0x7f020102, 0x7f020103, 0x7f020104, 0x7f020119, 0x7f02011a, 0x7f02011b, 0x7f02011c, 0x7f020123, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f020129, 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f02012d, 0x7f02012e }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorError = 54; + public static final int AppCompatTheme_colorPrimary = 55; + public static final int AppCompatTheme_colorPrimaryDark = 56; + public static final int AppCompatTheme_colorSwitchThumbNormal = 57; + public static final int AppCompatTheme_controlBackground = 58; + public static final int AppCompatTheme_dialogCornerRadius = 59; + public static final int AppCompatTheme_dialogPreferredPadding = 60; + public static final int AppCompatTheme_dialogTheme = 61; + public static final int AppCompatTheme_dividerHorizontal = 62; + public static final int AppCompatTheme_dividerVertical = 63; + public static final int AppCompatTheme_dropDownListViewStyle = 64; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65; + public static final int AppCompatTheme_editTextBackground = 66; + public static final int AppCompatTheme_editTextColor = 67; + public static final int AppCompatTheme_editTextStyle = 68; + public static final int AppCompatTheme_homeAsUpIndicator = 69; + public static final int AppCompatTheme_imageButtonStyle = 70; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71; + public static final int AppCompatTheme_listDividerAlertDialog = 72; + public static final int AppCompatTheme_listMenuViewStyle = 73; + public static final int AppCompatTheme_listPopupWindowStyle = 74; + public static final int AppCompatTheme_listPreferredItemHeight = 75; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 78; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 79; + public static final int AppCompatTheme_panelBackground = 80; + public static final int AppCompatTheme_panelMenuListTheme = 81; + public static final int AppCompatTheme_panelMenuListWidth = 82; + public static final int AppCompatTheme_popupMenuStyle = 83; + public static final int AppCompatTheme_popupWindowStyle = 84; + public static final int AppCompatTheme_radioButtonStyle = 85; + public static final int AppCompatTheme_ratingBarStyle = 86; + public static final int AppCompatTheme_ratingBarStyleIndicator = 87; + public static final int AppCompatTheme_ratingBarStyleSmall = 88; + public static final int AppCompatTheme_searchViewStyle = 89; + public static final int AppCompatTheme_seekBarStyle = 90; + public static final int AppCompatTheme_selectableItemBackground = 91; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 92; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 93; + public static final int AppCompatTheme_spinnerStyle = 94; + public static final int AppCompatTheme_switchStyle = 95; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 96; + public static final int AppCompatTheme_textAppearanceListItem = 97; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 98; + public static final int AppCompatTheme_textAppearanceListItemSmall = 99; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 100; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 102; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 103; + public static final int AppCompatTheme_textColorAlertDialogListItem = 104; + public static final int AppCompatTheme_textColorSearchUrl = 105; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 106; + public static final int AppCompatTheme_toolbarStyle = 107; + public static final int AppCompatTheme_tooltipForegroundColor = 108; + public static final int AppCompatTheme_tooltipFrameBackground = 109; + public static final int AppCompatTheme_viewInflaterClass = 110; + public static final int AppCompatTheme_windowActionBar = 111; + public static final int AppCompatTheme_windowActionBarOverlay = 112; + public static final int AppCompatTheme_windowActionModeOverlay = 113; + public static final int AppCompatTheme_windowFixedHeightMajor = 114; + public static final int AppCompatTheme_windowFixedHeightMinor = 115; + public static final int AppCompatTheme_windowFixedWidthMajor = 116; + public static final int AppCompatTheme_windowFixedWidthMinor = 117; + public static final int AppCompatTheme_windowMinWidthMajor = 118; + public static final int AppCompatTheme_windowMinWidthMinor = 119; + public static final int AppCompatTheme_windowNoTitle = 120; + public static final int[] ButtonBarLayout = { 0x7f020029 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f020046, 0x7f020047 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f0200ee }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] DrawerArrowToggle = { 0x7f02002c, 0x7f02002d, 0x7f02003a, 0x7f02004e, 0x7f02006d, 0x7f020085, 0x7f0200e8, 0x7f020106 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f020069, 0x7f02006b, 0x7f0200ac, 0x7f0200e4 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f02002b, 0x7f02005a, 0x7f02008c, 0x7f02008d, 0x7f0200b1, 0x7f0200e3, 0x7f02011d }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f0200c0, 0x7f0200ef }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f0200b2 }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f0200ed }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f0200b4, 0x7f0200b7 }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f02004a, 0x7f020059, 0x7f020064, 0x7f020086, 0x7f02008e, 0x7f020096, 0x7f0200c7, 0x7f0200c8, 0x7f0200dd, 0x7f0200de, 0x7f0200f0, 0x7f0200f5, 0x7f020124 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f0200be }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] StateListDrawable = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_visible = 1; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int[] StateListDrawableItem = { 0x1010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f0200e5, 0x7f0200eb, 0x7f0200f6, 0x7f0200f7, 0x7f0200f9, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02011e, 0x7f02011f, 0x7f020120 }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x7f02007b, 0x7f0200fa }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_fontFamily = 11; + public static final int TextAppearance_textAllCaps = 12; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f020041, 0x7f02004c, 0x7f02004d, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ae, 0x7f0200af, 0x7f0200be, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, 0x7f02010f, 0x7f020110, 0x7f020111, 0x7f020112, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f020116, 0x7f020117 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f0200b5, 0x7f0200b6, 0x7f020105 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f020038, 0x7f020039 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/arch/core/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/arch/core/R.java new file mode 100644 index 0000000..293d3b5 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/arch/core/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.arch.core; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/asynclayoutinflater/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/asynclayoutinflater/R.java new file mode 100644 index 0000000..5829ac2 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/asynclayoutinflater/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.asynclayoutinflater; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/coordinatorlayout/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/coordinatorlayout/R.java new file mode 100644 index 0000000..0ca2cea --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/coordinatorlayout/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.coordinatorlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int coordinatorLayoutStyle = 0x7f020062; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int keylines = 0x7f020094; + public static final int layout_anchor = 0x7f020097; + public static final int layout_anchorGravity = 0x7f020098; + public static final int layout_behavior = 0x7f020099; + public static final int layout_dodgeInsetEdges = 0x7f02009a; + public static final int layout_insetEdge = 0x7f02009b; + public static final int layout_keyline = 0x7f02009c; + public static final int statusBarBackground = 0x7f0200ee; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int bottom = 0x7f070026; + public static final int chronometer = 0x7f07002f; + public static final int end = 0x7f07003b; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int left = 0x7f070052; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int none = 0x7f07005b; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right = 0x7f070065; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int start = 0x7f070089; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + public static final int top = 0x7f070098; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout = 0x7f0c016d; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f0200ee }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/core/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/core/R.java new file mode 100644 index 0000000..673f13b --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/core/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.core; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/cursoradapter/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/cursoradapter/R.java new file mode 100644 index 0000000..da95f3e --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/cursoradapter/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.cursoradapter; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/customview/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/customview/R.java new file mode 100644 index 0000000..3178601 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/customview/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.customview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/documentfile/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/documentfile/R.java new file mode 100644 index 0000000..510d256 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/documentfile/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.documentfile; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/drawerlayout/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/drawerlayout/R.java new file mode 100644 index 0000000..6f393fa --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/drawerlayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.drawerlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/fragment/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/fragment/R.java new file mode 100644 index 0000000..14d6fa2 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/fragment/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.fragment; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int coordinatorLayoutStyle = 0x7f020062; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int keylines = 0x7f020094; + public static final int layout_anchor = 0x7f020097; + public static final int layout_anchorGravity = 0x7f020098; + public static final int layout_behavior = 0x7f020099; + public static final int layout_dodgeInsetEdges = 0x7f02009a; + public static final int layout_insetEdge = 0x7f02009b; + public static final int layout_keyline = 0x7f02009c; + public static final int statusBarBackground = 0x7f0200ee; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int bottom = 0x7f070026; + public static final int chronometer = 0x7f07002f; + public static final int end = 0x7f07003b; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int left = 0x7f070052; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int none = 0x7f07005b; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right = 0x7f070065; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int start = 0x7f070089; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + public static final int top = 0x7f070098; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout = 0x7f0c016d; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f0200ee }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/interpolator/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/interpolator/R.java new file mode 100644 index 0000000..b57cebd --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/interpolator/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.interpolator; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreui/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreui/R.java new file mode 100644 index 0000000..ee5ea42 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreui/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.legacy.coreui; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int coordinatorLayoutStyle = 0x7f020062; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int keylines = 0x7f020094; + public static final int layout_anchor = 0x7f020097; + public static final int layout_anchorGravity = 0x7f020098; + public static final int layout_behavior = 0x7f020099; + public static final int layout_dodgeInsetEdges = 0x7f02009a; + public static final int layout_insetEdge = 0x7f02009b; + public static final int layout_keyline = 0x7f02009c; + public static final int statusBarBackground = 0x7f0200ee; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int bottom = 0x7f070026; + public static final int chronometer = 0x7f07002f; + public static final int end = 0x7f07003b; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int left = 0x7f070052; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int none = 0x7f07005b; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right = 0x7f070065; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int start = 0x7f070089; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + public static final int top = 0x7f070098; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout = 0x7f0c016d; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f0200ee }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreutils/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreutils/R.java new file mode 100644 index 0000000..1cc8025 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreutils/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.legacy.coreutils; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/R.java new file mode 100644 index 0000000..bc12ff3 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.lifecycle; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/livedata/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/livedata/R.java new file mode 100644 index 0000000..a6a177e --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/livedata/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.lifecycle.livedata; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/livedata/core/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/livedata/core/R.java new file mode 100644 index 0000000..3ff0643 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/livedata/core/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.lifecycle.livedata.core; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/viewmodel/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/viewmodel/R.java new file mode 100644 index 0000000..116fcf3 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/lifecycle/viewmodel/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.lifecycle.viewmodel; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/loader/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/loader/R.java new file mode 100644 index 0000000..ceffdd3 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/loader/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.loader; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/localbroadcastmanager/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/localbroadcastmanager/R.java new file mode 100644 index 0000000..c582c8b --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/localbroadcastmanager/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.localbroadcastmanager; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/print/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/print/R.java new file mode 100644 index 0000000..2ffcf14 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/print/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.print; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/slidingpanelayout/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/slidingpanelayout/R.java new file mode 100644 index 0000000..0c6ac34 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/slidingpanelayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.slidingpanelayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/swiperefreshlayout/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/swiperefreshlayout/R.java new file mode 100644 index 0000000..12f3bd2 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/swiperefreshlayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.swiperefreshlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/vectordrawable/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/vectordrawable/R.java new file mode 100644 index 0000000..9091fd7 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/vectordrawable/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.vectordrawable; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int coordinatorLayoutStyle = 0x7f020062; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int keylines = 0x7f020094; + public static final int layout_anchor = 0x7f020097; + public static final int layout_anchorGravity = 0x7f020098; + public static final int layout_behavior = 0x7f020099; + public static final int layout_dodgeInsetEdges = 0x7f02009a; + public static final int layout_insetEdge = 0x7f02009b; + public static final int layout_keyline = 0x7f02009c; + public static final int statusBarBackground = 0x7f0200ee; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int bottom = 0x7f070026; + public static final int chronometer = 0x7f07002f; + public static final int end = 0x7f07003b; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int left = 0x7f070052; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int none = 0x7f07005b; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right = 0x7f070065; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int start = 0x7f070089; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + public static final int top = 0x7f070098; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout = 0x7f0c016d; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f0200ee }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/versionedparcelable/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/versionedparcelable/R.java new file mode 100644 index 0000000..92e83d4 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/versionedparcelable/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.versionedparcelable; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/viewpager/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/viewpager/R.java new file mode 100644 index 0000000..d6994d4 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/viewpager/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.viewpager; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f02002a; + public static final int font = 0x7f02007a; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int ttcIndex = 0x7f020121; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_light = 0x7f04004a; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f070013; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int chronometer = 0x7f07002f; + public static final int forever = 0x7f070047; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/drawee/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/drawee/R.java new file mode 100644 index 0000000..75fab73 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/drawee/R.java @@ -0,0 +1,127 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.drawee; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int actualImageResource = 0x7f020022; + public static final int actualImageScaleType = 0x7f020023; + public static final int actualImageUri = 0x7f020024; + public static final int backgroundImage = 0x7f020035; + public static final int fadeDuration = 0x7f020076; + public static final int failureImage = 0x7f020077; + public static final int failureImageScaleType = 0x7f020078; + public static final int overlayImage = 0x7f0200b3; + public static final int placeholderImage = 0x7f0200bb; + public static final int placeholderImageScaleType = 0x7f0200bc; + public static final int pressedStateOverlayImage = 0x7f0200c1; + public static final int progressBarAutoRotateInterval = 0x7f0200c2; + public static final int progressBarImage = 0x7f0200c3; + public static final int progressBarImageScaleType = 0x7f0200c4; + public static final int retryImage = 0x7f0200cd; + public static final int retryImageScaleType = 0x7f0200ce; + public static final int roundAsCircle = 0x7f0200cf; + public static final int roundBottomEnd = 0x7f0200d0; + public static final int roundBottomLeft = 0x7f0200d1; + public static final int roundBottomRight = 0x7f0200d2; + public static final int roundBottomStart = 0x7f0200d3; + public static final int roundTopEnd = 0x7f0200d4; + public static final int roundTopLeft = 0x7f0200d5; + public static final int roundTopRight = 0x7f0200d6; + public static final int roundTopStart = 0x7f0200d7; + public static final int roundWithOverlayColor = 0x7f0200d8; + public static final int roundedCornerRadius = 0x7f0200d9; + public static final int roundingBorderColor = 0x7f0200da; + public static final int roundingBorderPadding = 0x7f0200db; + public static final int roundingBorderWidth = 0x7f0200dc; + public static final int viewAspectRatio = 0x7f020122; + } + public static final class id { + private id() {} + + public static final int center = 0x7f070029; + public static final int centerCrop = 0x7f07002a; + public static final int centerInside = 0x7f07002b; + public static final int fitBottomStart = 0x7f070041; + public static final int fitCenter = 0x7f070042; + public static final int fitEnd = 0x7f070043; + public static final int fitStart = 0x7f070044; + public static final int fitXY = 0x7f070045; + public static final int focusCrop = 0x7f070046; + public static final int none = 0x7f07005b; + } + public static final class styleable { + private styleable() {} + + public static final int[] GenericDraweeHierarchy = { 0x7f020023, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 }; + public static final int GenericDraweeHierarchy_actualImageScaleType = 0; + public static final int GenericDraweeHierarchy_backgroundImage = 1; + public static final int GenericDraweeHierarchy_fadeDuration = 2; + public static final int GenericDraweeHierarchy_failureImage = 3; + public static final int GenericDraweeHierarchy_failureImageScaleType = 4; + public static final int GenericDraweeHierarchy_overlayImage = 5; + public static final int GenericDraweeHierarchy_placeholderImage = 6; + public static final int GenericDraweeHierarchy_placeholderImageScaleType = 7; + public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 8; + public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; + public static final int GenericDraweeHierarchy_progressBarImage = 10; + public static final int GenericDraweeHierarchy_progressBarImageScaleType = 11; + public static final int GenericDraweeHierarchy_retryImage = 12; + public static final int GenericDraweeHierarchy_retryImageScaleType = 13; + public static final int GenericDraweeHierarchy_roundAsCircle = 14; + public static final int GenericDraweeHierarchy_roundBottomEnd = 15; + public static final int GenericDraweeHierarchy_roundBottomLeft = 16; + public static final int GenericDraweeHierarchy_roundBottomRight = 17; + public static final int GenericDraweeHierarchy_roundBottomStart = 18; + public static final int GenericDraweeHierarchy_roundTopEnd = 19; + public static final int GenericDraweeHierarchy_roundTopLeft = 20; + public static final int GenericDraweeHierarchy_roundTopRight = 21; + public static final int GenericDraweeHierarchy_roundTopStart = 22; + public static final int GenericDraweeHierarchy_roundWithOverlayColor = 23; + public static final int GenericDraweeHierarchy_roundedCornerRadius = 24; + public static final int GenericDraweeHierarchy_roundingBorderColor = 25; + public static final int GenericDraweeHierarchy_roundingBorderPadding = 26; + public static final int GenericDraweeHierarchy_roundingBorderWidth = 27; + public static final int GenericDraweeHierarchy_viewAspectRatio = 28; + public static final int[] SimpleDraweeView = { 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 }; + public static final int SimpleDraweeView_actualImageResource = 0; + public static final int SimpleDraweeView_actualImageScaleType = 1; + public static final int SimpleDraweeView_actualImageUri = 2; + public static final int SimpleDraweeView_backgroundImage = 3; + public static final int SimpleDraweeView_fadeDuration = 4; + public static final int SimpleDraweeView_failureImage = 5; + public static final int SimpleDraweeView_failureImageScaleType = 6; + public static final int SimpleDraweeView_overlayImage = 7; + public static final int SimpleDraweeView_placeholderImage = 8; + public static final int SimpleDraweeView_placeholderImageScaleType = 9; + public static final int SimpleDraweeView_pressedStateOverlayImage = 10; + public static final int SimpleDraweeView_progressBarAutoRotateInterval = 11; + public static final int SimpleDraweeView_progressBarImage = 12; + public static final int SimpleDraweeView_progressBarImageScaleType = 13; + public static final int SimpleDraweeView_retryImage = 14; + public static final int SimpleDraweeView_retryImageScaleType = 15; + public static final int SimpleDraweeView_roundAsCircle = 16; + public static final int SimpleDraweeView_roundBottomEnd = 17; + public static final int SimpleDraweeView_roundBottomLeft = 18; + public static final int SimpleDraweeView_roundBottomRight = 19; + public static final int SimpleDraweeView_roundBottomStart = 20; + public static final int SimpleDraweeView_roundTopEnd = 21; + public static final int SimpleDraweeView_roundTopLeft = 22; + public static final int SimpleDraweeView_roundTopRight = 23; + public static final int SimpleDraweeView_roundTopStart = 24; + public static final int SimpleDraweeView_roundWithOverlayColor = 25; + public static final int SimpleDraweeView_roundedCornerRadius = 26; + public static final int SimpleDraweeView_roundingBorderColor = 27; + public static final int SimpleDraweeView_roundingBorderPadding = 28; + public static final int SimpleDraweeView_roundingBorderWidth = 29; + public static final int SimpleDraweeView_viewAspectRatio = 30; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/drawee/backends/pipeline/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/drawee/backends/pipeline/R.java new file mode 100644 index 0000000..1c275ba --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/drawee/backends/pipeline/R.java @@ -0,0 +1,127 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.drawee.backends.pipeline; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int actualImageResource = 0x7f020022; + public static final int actualImageScaleType = 0x7f020023; + public static final int actualImageUri = 0x7f020024; + public static final int backgroundImage = 0x7f020035; + public static final int fadeDuration = 0x7f020076; + public static final int failureImage = 0x7f020077; + public static final int failureImageScaleType = 0x7f020078; + public static final int overlayImage = 0x7f0200b3; + public static final int placeholderImage = 0x7f0200bb; + public static final int placeholderImageScaleType = 0x7f0200bc; + public static final int pressedStateOverlayImage = 0x7f0200c1; + public static final int progressBarAutoRotateInterval = 0x7f0200c2; + public static final int progressBarImage = 0x7f0200c3; + public static final int progressBarImageScaleType = 0x7f0200c4; + public static final int retryImage = 0x7f0200cd; + public static final int retryImageScaleType = 0x7f0200ce; + public static final int roundAsCircle = 0x7f0200cf; + public static final int roundBottomEnd = 0x7f0200d0; + public static final int roundBottomLeft = 0x7f0200d1; + public static final int roundBottomRight = 0x7f0200d2; + public static final int roundBottomStart = 0x7f0200d3; + public static final int roundTopEnd = 0x7f0200d4; + public static final int roundTopLeft = 0x7f0200d5; + public static final int roundTopRight = 0x7f0200d6; + public static final int roundTopStart = 0x7f0200d7; + public static final int roundWithOverlayColor = 0x7f0200d8; + public static final int roundedCornerRadius = 0x7f0200d9; + public static final int roundingBorderColor = 0x7f0200da; + public static final int roundingBorderPadding = 0x7f0200db; + public static final int roundingBorderWidth = 0x7f0200dc; + public static final int viewAspectRatio = 0x7f020122; + } + public static final class id { + private id() {} + + public static final int center = 0x7f070029; + public static final int centerCrop = 0x7f07002a; + public static final int centerInside = 0x7f07002b; + public static final int fitBottomStart = 0x7f070041; + public static final int fitCenter = 0x7f070042; + public static final int fitEnd = 0x7f070043; + public static final int fitStart = 0x7f070044; + public static final int fitXY = 0x7f070045; + public static final int focusCrop = 0x7f070046; + public static final int none = 0x7f07005b; + } + public static final class styleable { + private styleable() {} + + public static final int[] GenericDraweeHierarchy = { 0x7f020023, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 }; + public static final int GenericDraweeHierarchy_actualImageScaleType = 0; + public static final int GenericDraweeHierarchy_backgroundImage = 1; + public static final int GenericDraweeHierarchy_fadeDuration = 2; + public static final int GenericDraweeHierarchy_failureImage = 3; + public static final int GenericDraweeHierarchy_failureImageScaleType = 4; + public static final int GenericDraweeHierarchy_overlayImage = 5; + public static final int GenericDraweeHierarchy_placeholderImage = 6; + public static final int GenericDraweeHierarchy_placeholderImageScaleType = 7; + public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 8; + public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; + public static final int GenericDraweeHierarchy_progressBarImage = 10; + public static final int GenericDraweeHierarchy_progressBarImageScaleType = 11; + public static final int GenericDraweeHierarchy_retryImage = 12; + public static final int GenericDraweeHierarchy_retryImageScaleType = 13; + public static final int GenericDraweeHierarchy_roundAsCircle = 14; + public static final int GenericDraweeHierarchy_roundBottomEnd = 15; + public static final int GenericDraweeHierarchy_roundBottomLeft = 16; + public static final int GenericDraweeHierarchy_roundBottomRight = 17; + public static final int GenericDraweeHierarchy_roundBottomStart = 18; + public static final int GenericDraweeHierarchy_roundTopEnd = 19; + public static final int GenericDraweeHierarchy_roundTopLeft = 20; + public static final int GenericDraweeHierarchy_roundTopRight = 21; + public static final int GenericDraweeHierarchy_roundTopStart = 22; + public static final int GenericDraweeHierarchy_roundWithOverlayColor = 23; + public static final int GenericDraweeHierarchy_roundedCornerRadius = 24; + public static final int GenericDraweeHierarchy_roundingBorderColor = 25; + public static final int GenericDraweeHierarchy_roundingBorderPadding = 26; + public static final int GenericDraweeHierarchy_roundingBorderWidth = 27; + public static final int GenericDraweeHierarchy_viewAspectRatio = 28; + public static final int[] SimpleDraweeView = { 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 }; + public static final int SimpleDraweeView_actualImageResource = 0; + public static final int SimpleDraweeView_actualImageScaleType = 1; + public static final int SimpleDraweeView_actualImageUri = 2; + public static final int SimpleDraweeView_backgroundImage = 3; + public static final int SimpleDraweeView_fadeDuration = 4; + public static final int SimpleDraweeView_failureImage = 5; + public static final int SimpleDraweeView_failureImageScaleType = 6; + public static final int SimpleDraweeView_overlayImage = 7; + public static final int SimpleDraweeView_placeholderImage = 8; + public static final int SimpleDraweeView_placeholderImageScaleType = 9; + public static final int SimpleDraweeView_pressedStateOverlayImage = 10; + public static final int SimpleDraweeView_progressBarAutoRotateInterval = 11; + public static final int SimpleDraweeView_progressBarImage = 12; + public static final int SimpleDraweeView_progressBarImageScaleType = 13; + public static final int SimpleDraweeView_retryImage = 14; + public static final int SimpleDraweeView_retryImageScaleType = 15; + public static final int SimpleDraweeView_roundAsCircle = 16; + public static final int SimpleDraweeView_roundBottomEnd = 17; + public static final int SimpleDraweeView_roundBottomLeft = 18; + public static final int SimpleDraweeView_roundBottomRight = 19; + public static final int SimpleDraweeView_roundBottomStart = 20; + public static final int SimpleDraweeView_roundTopEnd = 21; + public static final int SimpleDraweeView_roundTopLeft = 22; + public static final int SimpleDraweeView_roundTopRight = 23; + public static final int SimpleDraweeView_roundTopStart = 24; + public static final int SimpleDraweeView_roundWithOverlayColor = 25; + public static final int SimpleDraweeView_roundedCornerRadius = 26; + public static final int SimpleDraweeView_roundingBorderColor = 27; + public static final int SimpleDraweeView_roundingBorderPadding = 28; + public static final int SimpleDraweeView_roundingBorderWidth = 29; + public static final int SimpleDraweeView_viewAspectRatio = 30; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/fbcore/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/fbcore/R.java new file mode 100644 index 0000000..69e60b8 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/fbcore/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.fbcore; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipeline/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipeline/R.java new file mode 100644 index 0000000..a287294 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipeline/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.imagepipeline; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipeline/backends/okhttp3/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipeline/backends/okhttp3/R.java new file mode 100644 index 0000000..b80933a --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipeline/backends/okhttp3/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.imagepipeline.backends.okhttp3; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipelinebase/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipelinebase/R.java new file mode 100644 index 0000000..f45036d --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/imagepipelinebase/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.imagepipelinebase; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/nativefilters/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/nativefilters/R.java new file mode 100644 index 0000000..e3b7abf --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/nativefilters/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.nativefilters; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/nativeimagetranscoder/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/nativeimagetranscoder/R.java new file mode 100644 index 0000000..f19eb95 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/nativeimagetranscoder/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.nativeimagetranscoder; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/react/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/react/R.java new file mode 100644 index 0000000..c2daeb3 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/react/R.java @@ -0,0 +1,1852 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.react; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + public static final int catalyst_fade_in = 0x7f01000c; + public static final int catalyst_fade_out = 0x7f01000d; + public static final int catalyst_push_up_in = 0x7f01000e; + public static final int catalyst_push_up_out = 0x7f01000f; + public static final int catalyst_slide_down = 0x7f010010; + public static final int catalyst_slide_up = 0x7f010011; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f020000; + public static final int actionBarItemBackground = 0x7f020001; + public static final int actionBarPopupTheme = 0x7f020002; + public static final int actionBarSize = 0x7f020003; + public static final int actionBarSplitStyle = 0x7f020004; + public static final int actionBarStyle = 0x7f020005; + public static final int actionBarTabBarStyle = 0x7f020006; + public static final int actionBarTabStyle = 0x7f020007; + public static final int actionBarTabTextStyle = 0x7f020008; + public static final int actionBarTheme = 0x7f020009; + public static final int actionBarWidgetTheme = 0x7f02000a; + public static final int actionButtonStyle = 0x7f02000b; + public static final int actionDropDownStyle = 0x7f02000c; + public static final int actionLayout = 0x7f02000d; + public static final int actionMenuTextAppearance = 0x7f02000e; + public static final int actionMenuTextColor = 0x7f02000f; + public static final int actionModeBackground = 0x7f020010; + public static final int actionModeCloseButtonStyle = 0x7f020011; + public static final int actionModeCloseDrawable = 0x7f020012; + public static final int actionModeCopyDrawable = 0x7f020013; + public static final int actionModeCutDrawable = 0x7f020014; + public static final int actionModeFindDrawable = 0x7f020015; + public static final int actionModePasteDrawable = 0x7f020016; + public static final int actionModePopupWindowStyle = 0x7f020017; + public static final int actionModeSelectAllDrawable = 0x7f020018; + public static final int actionModeShareDrawable = 0x7f020019; + public static final int actionModeSplitBackground = 0x7f02001a; + public static final int actionModeStyle = 0x7f02001b; + public static final int actionModeWebSearchDrawable = 0x7f02001c; + public static final int actionOverflowButtonStyle = 0x7f02001d; + public static final int actionOverflowMenuStyle = 0x7f02001e; + public static final int actionProviderClass = 0x7f02001f; + public static final int actionViewClass = 0x7f020020; + public static final int activityChooserViewStyle = 0x7f020021; + public static final int actualImageResource = 0x7f020022; + public static final int actualImageScaleType = 0x7f020023; + public static final int actualImageUri = 0x7f020024; + public static final int alertDialogButtonGroupStyle = 0x7f020025; + public static final int alertDialogCenterButtons = 0x7f020026; + public static final int alertDialogStyle = 0x7f020027; + public static final int alertDialogTheme = 0x7f020028; + public static final int allowStacking = 0x7f020029; + public static final int alpha = 0x7f02002a; + public static final int alphabeticModifiers = 0x7f02002b; + public static final int arrowHeadLength = 0x7f02002c; + public static final int arrowShaftLength = 0x7f02002d; + public static final int autoCompleteTextViewStyle = 0x7f02002e; + public static final int autoSizeMaxTextSize = 0x7f02002f; + public static final int autoSizeMinTextSize = 0x7f020030; + public static final int autoSizePresetSizes = 0x7f020031; + public static final int autoSizeStepGranularity = 0x7f020032; + public static final int autoSizeTextType = 0x7f020033; + public static final int background = 0x7f020034; + public static final int backgroundImage = 0x7f020035; + public static final int backgroundSplit = 0x7f020036; + public static final int backgroundStacked = 0x7f020037; + public static final int backgroundTint = 0x7f020038; + public static final int backgroundTintMode = 0x7f020039; + public static final int barLength = 0x7f02003a; + public static final int borderlessButtonStyle = 0x7f02003b; + public static final int buttonBarButtonStyle = 0x7f02003c; + public static final int buttonBarNegativeButtonStyle = 0x7f02003d; + public static final int buttonBarNeutralButtonStyle = 0x7f02003e; + public static final int buttonBarPositiveButtonStyle = 0x7f02003f; + public static final int buttonBarStyle = 0x7f020040; + public static final int buttonGravity = 0x7f020041; + public static final int buttonIconDimen = 0x7f020042; + public static final int buttonPanelSideLayout = 0x7f020043; + public static final int buttonStyle = 0x7f020044; + public static final int buttonStyleSmall = 0x7f020045; + public static final int buttonTint = 0x7f020046; + public static final int buttonTintMode = 0x7f020047; + public static final int checkboxStyle = 0x7f020048; + public static final int checkedTextViewStyle = 0x7f020049; + public static final int closeIcon = 0x7f02004a; + public static final int closeItemLayout = 0x7f02004b; + public static final int collapseContentDescription = 0x7f02004c; + public static final int collapseIcon = 0x7f02004d; + public static final int color = 0x7f02004e; + public static final int colorAccent = 0x7f02004f; + public static final int colorBackgroundFloating = 0x7f020050; + public static final int colorButtonNormal = 0x7f020051; + public static final int colorControlActivated = 0x7f020052; + public static final int colorControlHighlight = 0x7f020053; + public static final int colorControlNormal = 0x7f020054; + public static final int colorError = 0x7f020055; + public static final int colorPrimary = 0x7f020056; + public static final int colorPrimaryDark = 0x7f020057; + public static final int colorSwitchThumbNormal = 0x7f020058; + public static final int commitIcon = 0x7f020059; + public static final int contentDescription = 0x7f02005a; + public static final int contentInsetEnd = 0x7f02005b; + public static final int contentInsetEndWithActions = 0x7f02005c; + public static final int contentInsetLeft = 0x7f02005d; + public static final int contentInsetRight = 0x7f02005e; + public static final int contentInsetStart = 0x7f02005f; + public static final int contentInsetStartWithNavigation = 0x7f020060; + public static final int controlBackground = 0x7f020061; + public static final int coordinatorLayoutStyle = 0x7f020062; + public static final int customNavigationLayout = 0x7f020063; + public static final int defaultQueryHint = 0x7f020064; + public static final int dialogCornerRadius = 0x7f020065; + public static final int dialogPreferredPadding = 0x7f020066; + public static final int dialogTheme = 0x7f020067; + public static final int displayOptions = 0x7f020068; + public static final int divider = 0x7f020069; + public static final int dividerHorizontal = 0x7f02006a; + public static final int dividerPadding = 0x7f02006b; + public static final int dividerVertical = 0x7f02006c; + public static final int drawableSize = 0x7f02006d; + public static final int drawerArrowStyle = 0x7f02006e; + public static final int dropDownListViewStyle = 0x7f02006f; + public static final int dropdownListPreferredItemHeight = 0x7f020070; + public static final int editTextBackground = 0x7f020071; + public static final int editTextColor = 0x7f020072; + public static final int editTextStyle = 0x7f020073; + public static final int elevation = 0x7f020074; + public static final int expandActivityOverflowButtonDrawable = 0x7f020075; + public static final int fadeDuration = 0x7f020076; + public static final int failureImage = 0x7f020077; + public static final int failureImageScaleType = 0x7f020078; + public static final int firstBaselineToTopHeight = 0x7f020079; + public static final int font = 0x7f02007a; + public static final int fontFamily = 0x7f02007b; + public static final int fontProviderAuthority = 0x7f02007c; + public static final int fontProviderCerts = 0x7f02007d; + public static final int fontProviderFetchStrategy = 0x7f02007e; + public static final int fontProviderFetchTimeout = 0x7f02007f; + public static final int fontProviderPackage = 0x7f020080; + public static final int fontProviderQuery = 0x7f020081; + public static final int fontStyle = 0x7f020082; + public static final int fontVariationSettings = 0x7f020083; + public static final int fontWeight = 0x7f020084; + public static final int gapBetweenBars = 0x7f020085; + public static final int goIcon = 0x7f020086; + public static final int height = 0x7f020087; + public static final int hideOnContentScroll = 0x7f020088; + public static final int homeAsUpIndicator = 0x7f020089; + public static final int homeLayout = 0x7f02008a; + public static final int icon = 0x7f02008b; + public static final int iconTint = 0x7f02008c; + public static final int iconTintMode = 0x7f02008d; + public static final int iconifiedByDefault = 0x7f02008e; + public static final int imageButtonStyle = 0x7f02008f; + public static final int indeterminateProgressStyle = 0x7f020090; + public static final int initialActivityCount = 0x7f020091; + public static final int isLightTheme = 0x7f020092; + public static final int itemPadding = 0x7f020093; + public static final int keylines = 0x7f020094; + public static final int lastBaselineToBottomHeight = 0x7f020095; + public static final int layout = 0x7f020096; + public static final int layout_anchor = 0x7f020097; + public static final int layout_anchorGravity = 0x7f020098; + public static final int layout_behavior = 0x7f020099; + public static final int layout_dodgeInsetEdges = 0x7f02009a; + public static final int layout_insetEdge = 0x7f02009b; + public static final int layout_keyline = 0x7f02009c; + public static final int lineHeight = 0x7f02009d; + public static final int listChoiceBackgroundIndicator = 0x7f02009e; + public static final int listDividerAlertDialog = 0x7f02009f; + public static final int listItemLayout = 0x7f0200a0; + public static final int listLayout = 0x7f0200a1; + public static final int listMenuViewStyle = 0x7f0200a2; + public static final int listPopupWindowStyle = 0x7f0200a3; + public static final int listPreferredItemHeight = 0x7f0200a4; + public static final int listPreferredItemHeightLarge = 0x7f0200a5; + public static final int listPreferredItemHeightSmall = 0x7f0200a6; + public static final int listPreferredItemPaddingLeft = 0x7f0200a7; + public static final int listPreferredItemPaddingRight = 0x7f0200a8; + public static final int logo = 0x7f0200a9; + public static final int logoDescription = 0x7f0200aa; + public static final int maxButtonHeight = 0x7f0200ab; + public static final int measureWithLargestChild = 0x7f0200ac; + public static final int multiChoiceItemLayout = 0x7f0200ad; + public static final int navigationContentDescription = 0x7f0200ae; + public static final int navigationIcon = 0x7f0200af; + public static final int navigationMode = 0x7f0200b0; + public static final int numericModifiers = 0x7f0200b1; + public static final int overlapAnchor = 0x7f0200b2; + public static final int overlayImage = 0x7f0200b3; + public static final int paddingBottomNoButtons = 0x7f0200b4; + public static final int paddingEnd = 0x7f0200b5; + public static final int paddingStart = 0x7f0200b6; + public static final int paddingTopNoTitle = 0x7f0200b7; + public static final int panelBackground = 0x7f0200b8; + public static final int panelMenuListTheme = 0x7f0200b9; + public static final int panelMenuListWidth = 0x7f0200ba; + public static final int placeholderImage = 0x7f0200bb; + public static final int placeholderImageScaleType = 0x7f0200bc; + public static final int popupMenuStyle = 0x7f0200bd; + public static final int popupTheme = 0x7f0200be; + public static final int popupWindowStyle = 0x7f0200bf; + public static final int preserveIconSpacing = 0x7f0200c0; + public static final int pressedStateOverlayImage = 0x7f0200c1; + public static final int progressBarAutoRotateInterval = 0x7f0200c2; + public static final int progressBarImage = 0x7f0200c3; + public static final int progressBarImageScaleType = 0x7f0200c4; + public static final int progressBarPadding = 0x7f0200c5; + public static final int progressBarStyle = 0x7f0200c6; + public static final int queryBackground = 0x7f0200c7; + public static final int queryHint = 0x7f0200c8; + public static final int radioButtonStyle = 0x7f0200c9; + public static final int ratingBarStyle = 0x7f0200ca; + public static final int ratingBarStyleIndicator = 0x7f0200cb; + public static final int ratingBarStyleSmall = 0x7f0200cc; + public static final int retryImage = 0x7f0200cd; + public static final int retryImageScaleType = 0x7f0200ce; + public static final int roundAsCircle = 0x7f0200cf; + public static final int roundBottomEnd = 0x7f0200d0; + public static final int roundBottomLeft = 0x7f0200d1; + public static final int roundBottomRight = 0x7f0200d2; + public static final int roundBottomStart = 0x7f0200d3; + public static final int roundTopEnd = 0x7f0200d4; + public static final int roundTopLeft = 0x7f0200d5; + public static final int roundTopRight = 0x7f0200d6; + public static final int roundTopStart = 0x7f0200d7; + public static final int roundWithOverlayColor = 0x7f0200d8; + public static final int roundedCornerRadius = 0x7f0200d9; + public static final int roundingBorderColor = 0x7f0200da; + public static final int roundingBorderPadding = 0x7f0200db; + public static final int roundingBorderWidth = 0x7f0200dc; + public static final int searchHintIcon = 0x7f0200dd; + public static final int searchIcon = 0x7f0200de; + public static final int searchViewStyle = 0x7f0200df; + public static final int seekBarStyle = 0x7f0200e0; + public static final int selectableItemBackground = 0x7f0200e1; + public static final int selectableItemBackgroundBorderless = 0x7f0200e2; + public static final int showAsAction = 0x7f0200e3; + public static final int showDividers = 0x7f0200e4; + public static final int showText = 0x7f0200e5; + public static final int showTitle = 0x7f0200e6; + public static final int singleChoiceItemLayout = 0x7f0200e7; + public static final int spinBars = 0x7f0200e8; + public static final int spinnerDropDownItemStyle = 0x7f0200e9; + public static final int spinnerStyle = 0x7f0200ea; + public static final int splitTrack = 0x7f0200eb; + public static final int srcCompat = 0x7f0200ec; + public static final int state_above_anchor = 0x7f0200ed; + public static final int statusBarBackground = 0x7f0200ee; + public static final int subMenuArrow = 0x7f0200ef; + public static final int submitBackground = 0x7f0200f0; + public static final int subtitle = 0x7f0200f1; + public static final int subtitleTextAppearance = 0x7f0200f2; + public static final int subtitleTextColor = 0x7f0200f3; + public static final int subtitleTextStyle = 0x7f0200f4; + public static final int suggestionRowLayout = 0x7f0200f5; + public static final int switchMinWidth = 0x7f0200f6; + public static final int switchPadding = 0x7f0200f7; + public static final int switchStyle = 0x7f0200f8; + public static final int switchTextAppearance = 0x7f0200f9; + public static final int textAllCaps = 0x7f0200fa; + public static final int textAppearanceLargePopupMenu = 0x7f0200fb; + public static final int textAppearanceListItem = 0x7f0200fc; + public static final int textAppearanceListItemSecondary = 0x7f0200fd; + public static final int textAppearanceListItemSmall = 0x7f0200fe; + public static final int textAppearancePopupMenuHeader = 0x7f0200ff; + public static final int textAppearanceSearchResultSubtitle = 0x7f020100; + public static final int textAppearanceSearchResultTitle = 0x7f020101; + public static final int textAppearanceSmallPopupMenu = 0x7f020102; + public static final int textColorAlertDialogListItem = 0x7f020103; + public static final int textColorSearchUrl = 0x7f020104; + public static final int theme = 0x7f020105; + public static final int thickness = 0x7f020106; + public static final int thumbTextPadding = 0x7f020107; + public static final int thumbTint = 0x7f020108; + public static final int thumbTintMode = 0x7f020109; + public static final int tickMark = 0x7f02010a; + public static final int tickMarkTint = 0x7f02010b; + public static final int tickMarkTintMode = 0x7f02010c; + public static final int tint = 0x7f02010d; + public static final int tintMode = 0x7f02010e; + public static final int title = 0x7f02010f; + public static final int titleMargin = 0x7f020110; + public static final int titleMarginBottom = 0x7f020111; + public static final int titleMarginEnd = 0x7f020112; + public static final int titleMarginStart = 0x7f020113; + public static final int titleMarginTop = 0x7f020114; + public static final int titleMargins = 0x7f020115; + public static final int titleTextAppearance = 0x7f020116; + public static final int titleTextColor = 0x7f020117; + public static final int titleTextStyle = 0x7f020118; + public static final int toolbarNavigationButtonStyle = 0x7f020119; + public static final int toolbarStyle = 0x7f02011a; + public static final int tooltipForegroundColor = 0x7f02011b; + public static final int tooltipFrameBackground = 0x7f02011c; + public static final int tooltipText = 0x7f02011d; + public static final int track = 0x7f02011e; + public static final int trackTint = 0x7f02011f; + public static final int trackTintMode = 0x7f020120; + public static final int ttcIndex = 0x7f020121; + public static final int viewAspectRatio = 0x7f020122; + public static final int viewInflaterClass = 0x7f020123; + public static final int voiceIcon = 0x7f020124; + public static final int windowActionBar = 0x7f020125; + public static final int windowActionBarOverlay = 0x7f020126; + public static final int windowActionModeOverlay = 0x7f020127; + public static final int windowFixedHeightMajor = 0x7f020128; + public static final int windowFixedHeightMinor = 0x7f020129; + public static final int windowFixedWidthMajor = 0x7f02012a; + public static final int windowFixedWidthMinor = 0x7f02012b; + public static final int windowMinWidthMajor = 0x7f02012c; + public static final int windowMinWidthMinor = 0x7f02012d; + public static final int windowNoTitle = 0x7f02012e; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f030000; + public static final int abc_allow_stacked_button_bar = 0x7f030001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f030002; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f040001; + public static final int abc_btn_colored_borderless_text_material = 0x7f040002; + public static final int abc_btn_colored_text_material = 0x7f040003; + public static final int abc_color_highlight_material = 0x7f040004; + public static final int abc_hint_foreground_material_dark = 0x7f040005; + public static final int abc_hint_foreground_material_light = 0x7f040006; + public static final int abc_input_method_navigation_guard = 0x7f040007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f040008; + public static final int abc_primary_text_disable_only_material_light = 0x7f040009; + public static final int abc_primary_text_material_dark = 0x7f04000a; + public static final int abc_primary_text_material_light = 0x7f04000b; + public static final int abc_search_url_text = 0x7f04000c; + public static final int abc_search_url_text_normal = 0x7f04000d; + public static final int abc_search_url_text_pressed = 0x7f04000e; + public static final int abc_search_url_text_selected = 0x7f04000f; + public static final int abc_secondary_text_material_dark = 0x7f040010; + public static final int abc_secondary_text_material_light = 0x7f040011; + public static final int abc_tint_btn_checkable = 0x7f040012; + public static final int abc_tint_default = 0x7f040013; + public static final int abc_tint_edittext = 0x7f040014; + public static final int abc_tint_seek_thumb = 0x7f040015; + public static final int abc_tint_spinner = 0x7f040016; + public static final int abc_tint_switch_track = 0x7f040017; + public static final int accent_material_dark = 0x7f040018; + public static final int accent_material_light = 0x7f040019; + public static final int background_floating_material_dark = 0x7f04001a; + public static final int background_floating_material_light = 0x7f04001b; + public static final int background_material_dark = 0x7f04001c; + public static final int background_material_light = 0x7f04001d; + public static final int bright_foreground_disabled_material_dark = 0x7f04001e; + public static final int bright_foreground_disabled_material_light = 0x7f04001f; + public static final int bright_foreground_inverse_material_dark = 0x7f040020; + public static final int bright_foreground_inverse_material_light = 0x7f040021; + public static final int bright_foreground_material_dark = 0x7f040022; + public static final int bright_foreground_material_light = 0x7f040023; + public static final int button_material_dark = 0x7f040024; + public static final int button_material_light = 0x7f040025; + public static final int catalyst_redbox_background = 0x7f040026; + public static final int dim_foreground_disabled_material_dark = 0x7f040027; + public static final int dim_foreground_disabled_material_light = 0x7f040028; + public static final int dim_foreground_material_dark = 0x7f040029; + public static final int dim_foreground_material_light = 0x7f04002a; + public static final int error_color_material_dark = 0x7f04002b; + public static final int error_color_material_light = 0x7f04002c; + public static final int foreground_material_dark = 0x7f04002d; + public static final int foreground_material_light = 0x7f04002e; + public static final int highlighted_text_material_dark = 0x7f04002f; + public static final int highlighted_text_material_light = 0x7f040030; + public static final int material_blue_grey_800 = 0x7f040031; + public static final int material_blue_grey_900 = 0x7f040032; + public static final int material_blue_grey_950 = 0x7f040033; + public static final int material_deep_teal_200 = 0x7f040034; + public static final int material_deep_teal_500 = 0x7f040035; + public static final int material_grey_100 = 0x7f040036; + public static final int material_grey_300 = 0x7f040037; + public static final int material_grey_50 = 0x7f040038; + public static final int material_grey_600 = 0x7f040039; + public static final int material_grey_800 = 0x7f04003a; + public static final int material_grey_850 = 0x7f04003b; + public static final int material_grey_900 = 0x7f04003c; + public static final int notification_action_color_filter = 0x7f04003d; + public static final int notification_icon_bg_color = 0x7f04003e; + public static final int primary_dark_material_dark = 0x7f04003f; + public static final int primary_dark_material_light = 0x7f040040; + public static final int primary_material_dark = 0x7f040041; + public static final int primary_material_light = 0x7f040042; + public static final int primary_text_default_material_dark = 0x7f040043; + public static final int primary_text_default_material_light = 0x7f040044; + public static final int primary_text_disabled_material_dark = 0x7f040045; + public static final int primary_text_disabled_material_light = 0x7f040046; + public static final int ripple_material_dark = 0x7f040047; + public static final int ripple_material_light = 0x7f040048; + public static final int secondary_text_default_material_dark = 0x7f040049; + public static final int secondary_text_default_material_light = 0x7f04004a; + public static final int secondary_text_disabled_material_dark = 0x7f04004b; + public static final int secondary_text_disabled_material_light = 0x7f04004c; + public static final int switch_thumb_disabled_material_dark = 0x7f04004d; + public static final int switch_thumb_disabled_material_light = 0x7f04004e; + public static final int switch_thumb_material_dark = 0x7f04004f; + public static final int switch_thumb_material_light = 0x7f040050; + public static final int switch_thumb_normal_material_dark = 0x7f040051; + public static final int switch_thumb_normal_material_light = 0x7f040052; + public static final int tooltip_background_dark = 0x7f040053; + public static final int tooltip_background_light = 0x7f040054; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f050000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f050001; + public static final int abc_action_bar_default_height_material = 0x7f050002; + public static final int abc_action_bar_default_padding_end_material = 0x7f050003; + public static final int abc_action_bar_default_padding_start_material = 0x7f050004; + public static final int abc_action_bar_elevation_material = 0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008; + public static final int abc_action_bar_stacked_max_height = 0x7f050009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000c; + public static final int abc_action_button_min_height_material = 0x7f05000d; + public static final int abc_action_button_min_width_material = 0x7f05000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f05000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f050010; + public static final int abc_alert_dialog_button_dimen = 0x7f050011; + public static final int abc_button_inset_horizontal_material = 0x7f050012; + public static final int abc_button_inset_vertical_material = 0x7f050013; + public static final int abc_button_padding_horizontal_material = 0x7f050014; + public static final int abc_button_padding_vertical_material = 0x7f050015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f050016; + public static final int abc_config_prefDialogWidth = 0x7f050017; + public static final int abc_control_corner_material = 0x7f050018; + public static final int abc_control_inset_material = 0x7f050019; + public static final int abc_control_padding_material = 0x7f05001a; + public static final int abc_dialog_corner_radius_material = 0x7f05001b; + public static final int abc_dialog_fixed_height_major = 0x7f05001c; + public static final int abc_dialog_fixed_height_minor = 0x7f05001d; + public static final int abc_dialog_fixed_width_major = 0x7f05001e; + public static final int abc_dialog_fixed_width_minor = 0x7f05001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f050020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f050021; + public static final int abc_dialog_min_width_major = 0x7f050022; + public static final int abc_dialog_min_width_minor = 0x7f050023; + public static final int abc_dialog_padding_material = 0x7f050024; + public static final int abc_dialog_padding_top_material = 0x7f050025; + public static final int abc_dialog_title_divider_material = 0x7f050026; + public static final int abc_disabled_alpha_material_dark = 0x7f050027; + public static final int abc_disabled_alpha_material_light = 0x7f050028; + public static final int abc_dropdownitem_icon_width = 0x7f050029; + public static final int abc_dropdownitem_text_padding_left = 0x7f05002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f05002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f05002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f05002d; + public static final int abc_edit_text_inset_top_material = 0x7f05002e; + public static final int abc_floating_window_z = 0x7f05002f; + public static final int abc_list_item_padding_horizontal_material = 0x7f050030; + public static final int abc_panel_menu_list_width = 0x7f050031; + public static final int abc_progress_bar_height_material = 0x7f050032; + public static final int abc_search_view_preferred_height = 0x7f050033; + public static final int abc_search_view_preferred_width = 0x7f050034; + public static final int abc_seekbar_track_background_height_material = 0x7f050035; + public static final int abc_seekbar_track_progress_height_material = 0x7f050036; + public static final int abc_select_dialog_padding_start_material = 0x7f050037; + public static final int abc_switch_padding = 0x7f050038; + public static final int abc_text_size_body_1_material = 0x7f050039; + public static final int abc_text_size_body_2_material = 0x7f05003a; + public static final int abc_text_size_button_material = 0x7f05003b; + public static final int abc_text_size_caption_material = 0x7f05003c; + public static final int abc_text_size_display_1_material = 0x7f05003d; + public static final int abc_text_size_display_2_material = 0x7f05003e; + public static final int abc_text_size_display_3_material = 0x7f05003f; + public static final int abc_text_size_display_4_material = 0x7f050040; + public static final int abc_text_size_headline_material = 0x7f050041; + public static final int abc_text_size_large_material = 0x7f050042; + public static final int abc_text_size_medium_material = 0x7f050043; + public static final int abc_text_size_menu_header_material = 0x7f050044; + public static final int abc_text_size_menu_material = 0x7f050045; + public static final int abc_text_size_small_material = 0x7f050046; + public static final int abc_text_size_subhead_material = 0x7f050047; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f050048; + public static final int abc_text_size_title_material = 0x7f050049; + public static final int abc_text_size_title_material_toolbar = 0x7f05004a; + public static final int compat_button_inset_horizontal_material = 0x7f05004b; + public static final int compat_button_inset_vertical_material = 0x7f05004c; + public static final int compat_button_padding_horizontal_material = 0x7f05004d; + public static final int compat_button_padding_vertical_material = 0x7f05004e; + public static final int compat_control_corner_material = 0x7f05004f; + public static final int compat_notification_large_icon_max_height = 0x7f050050; + public static final int compat_notification_large_icon_max_width = 0x7f050051; + public static final int disabled_alpha_material_dark = 0x7f050052; + public static final int disabled_alpha_material_light = 0x7f050053; + public static final int highlight_alpha_material_colored = 0x7f050054; + public static final int highlight_alpha_material_dark = 0x7f050055; + public static final int highlight_alpha_material_light = 0x7f050056; + public static final int hint_alpha_material_dark = 0x7f050057; + public static final int hint_alpha_material_light = 0x7f050058; + public static final int hint_pressed_alpha_material_dark = 0x7f050059; + public static final int hint_pressed_alpha_material_light = 0x7f05005a; + public static final int notification_action_icon_size = 0x7f05005b; + public static final int notification_action_text_size = 0x7f05005c; + public static final int notification_big_circle_margin = 0x7f05005d; + public static final int notification_content_margin_start = 0x7f05005e; + public static final int notification_large_icon_height = 0x7f05005f; + public static final int notification_large_icon_width = 0x7f050060; + public static final int notification_main_column_padding_top = 0x7f050061; + public static final int notification_media_narrow_margin = 0x7f050062; + public static final int notification_right_icon_size = 0x7f050063; + public static final int notification_right_side_padding_top = 0x7f050064; + public static final int notification_small_icon_background_padding = 0x7f050065; + public static final int notification_small_icon_size_as_large = 0x7f050066; + public static final int notification_subtext_size = 0x7f050067; + public static final int notification_top_pad = 0x7f050068; + public static final int notification_top_pad_large_text = 0x7f050069; + public static final int tooltip_corner_radius = 0x7f05006a; + public static final int tooltip_horizontal_padding = 0x7f05006b; + public static final int tooltip_margin = 0x7f05006c; + public static final int tooltip_precise_anchor_extra_offset = 0x7f05006d; + public static final int tooltip_precise_anchor_threshold = 0x7f05006e; + public static final int tooltip_vertical_padding = 0x7f05006f; + public static final int tooltip_y_offset_non_touch = 0x7f050070; + public static final int tooltip_y_offset_touch = 0x7f050071; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060000; + public static final int abc_action_bar_item_background_material = 0x7f060001; + public static final int abc_btn_borderless_material = 0x7f060002; + public static final int abc_btn_check_material = 0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060005; + public static final int abc_btn_colored_material = 0x7f060006; + public static final int abc_btn_default_mtrl_shape = 0x7f060007; + public static final int abc_btn_radio_material = 0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000c; + public static final int abc_cab_background_internal_bg = 0x7f06000d; + public static final int abc_cab_background_top_material = 0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f06000f; + public static final int abc_control_background_material = 0x7f060010; + public static final int abc_dialog_material_background = 0x7f060011; + public static final int abc_edit_text_material = 0x7f060012; + public static final int abc_ic_ab_back_material = 0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060014; + public static final int abc_ic_clear_material = 0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060016; + public static final int abc_ic_go_search_api_material = 0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f060019; + public static final int abc_ic_menu_overflow_material = 0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f06001d; + public static final int abc_ic_search_api_material = 0x7f06001e; + public static final int abc_ic_star_black_16dp = 0x7f06001f; + public static final int abc_ic_star_black_36dp = 0x7f060020; + public static final int abc_ic_star_black_48dp = 0x7f060021; + public static final int abc_ic_star_half_black_16dp = 0x7f060022; + public static final int abc_ic_star_half_black_36dp = 0x7f060023; + public static final int abc_ic_star_half_black_48dp = 0x7f060024; + public static final int abc_ic_voice_search_api_material = 0x7f060025; + public static final int abc_item_background_holo_dark = 0x7f060026; + public static final int abc_item_background_holo_light = 0x7f060027; + public static final int abc_list_divider_material = 0x7f060028; + public static final int abc_list_divider_mtrl_alpha = 0x7f060029; + public static final int abc_list_focused_holo = 0x7f06002a; + public static final int abc_list_longpressed_holo = 0x7f06002b; + public static final int abc_list_pressed_holo_dark = 0x7f06002c; + public static final int abc_list_pressed_holo_light = 0x7f06002d; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f06002e; + public static final int abc_list_selector_background_transition_holo_light = 0x7f06002f; + public static final int abc_list_selector_disabled_holo_dark = 0x7f060030; + public static final int abc_list_selector_disabled_holo_light = 0x7f060031; + public static final int abc_list_selector_holo_dark = 0x7f060032; + public static final int abc_list_selector_holo_light = 0x7f060033; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060034; + public static final int abc_popup_background_mtrl_mult = 0x7f060035; + public static final int abc_ratingbar_indicator_material = 0x7f060036; + public static final int abc_ratingbar_material = 0x7f060037; + public static final int abc_ratingbar_small_material = 0x7f060038; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f06003a; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003b; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003c; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f06003d; + public static final int abc_seekbar_thumb_material = 0x7f06003e; + public static final int abc_seekbar_tick_mark_material = 0x7f06003f; + public static final int abc_seekbar_track_material = 0x7f060040; + public static final int abc_spinner_mtrl_am_alpha = 0x7f060041; + public static final int abc_spinner_textfield_background_material = 0x7f060042; + public static final int abc_switch_thumb_material = 0x7f060043; + public static final int abc_switch_track_mtrl_alpha = 0x7f060044; + public static final int abc_tab_indicator_material = 0x7f060045; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f060046; + public static final int abc_text_cursor_material = 0x7f060047; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f060048; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f06004a; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004c; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f06004d; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f06004e; + public static final int abc_textfield_default_mtrl_alpha = 0x7f06004f; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f060050; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060051; + public static final int abc_textfield_search_material = 0x7f060052; + public static final int abc_vector_test = 0x7f060053; + public static final int notification_action_background = 0x7f060054; + public static final int notification_bg = 0x7f060055; + public static final int notification_bg_low = 0x7f060056; + public static final int notification_bg_low_normal = 0x7f060057; + public static final int notification_bg_low_pressed = 0x7f060058; + public static final int notification_bg_normal = 0x7f060059; + public static final int notification_bg_normal_pressed = 0x7f06005a; + public static final int notification_icon_background = 0x7f06005b; + public static final int notification_template_icon_bg = 0x7f06005c; + public static final int notification_template_icon_low_bg = 0x7f06005d; + public static final int notification_tile_bg = 0x7f06005e; + public static final int notify_panel_notification_icon_bg = 0x7f06005f; + public static final int redbox_top_border_background = 0x7f060060; + public static final int tooltip_frame_dark = 0x7f060061; + public static final int tooltip_frame_light = 0x7f060062; + } + public static final class id { + private id() {} + + public static final int accessibility_actions = 0x7f070006; + public static final int accessibility_hint = 0x7f070007; + public static final int accessibility_label = 0x7f070008; + public static final int accessibility_role = 0x7f070009; + public static final int accessibility_state = 0x7f07000a; + public static final int accessibility_states = 0x7f07000b; + public static final int action_bar = 0x7f07000c; + public static final int action_bar_activity_content = 0x7f07000d; + public static final int action_bar_container = 0x7f07000e; + public static final int action_bar_root = 0x7f07000f; + public static final int action_bar_spinner = 0x7f070010; + public static final int action_bar_subtitle = 0x7f070011; + public static final int action_bar_title = 0x7f070012; + public static final int action_container = 0x7f070013; + public static final int action_context_bar = 0x7f070014; + public static final int action_divider = 0x7f070015; + public static final int action_image = 0x7f070016; + public static final int action_menu_divider = 0x7f070017; + public static final int action_menu_presenter = 0x7f070018; + public static final int action_mode_bar = 0x7f070019; + public static final int action_mode_bar_stub = 0x7f07001a; + public static final int action_mode_close_button = 0x7f07001b; + public static final int action_text = 0x7f07001c; + public static final int actions = 0x7f07001d; + public static final int activity_chooser_view_content = 0x7f07001e; + public static final int add = 0x7f07001f; + public static final int alertTitle = 0x7f070020; + public static final int async = 0x7f070023; + public static final int blocking = 0x7f070025; + public static final int bottom = 0x7f070026; + public static final int buttonPanel = 0x7f070027; + public static final int catalyst_redbox_title = 0x7f070028; + public static final int center = 0x7f070029; + public static final int centerCrop = 0x7f07002a; + public static final int centerInside = 0x7f07002b; + public static final int checkbox = 0x7f07002e; + public static final int chronometer = 0x7f07002f; + public static final int content = 0x7f070033; + public static final int contentPanel = 0x7f070034; + public static final int custom = 0x7f070035; + public static final int customPanel = 0x7f070036; + public static final int decor_content_parent = 0x7f070037; + public static final int default_activity_button = 0x7f070038; + public static final int edit_query = 0x7f07003a; + public static final int end = 0x7f07003b; + public static final int expand_activities_button = 0x7f07003c; + public static final int expanded_menu = 0x7f07003d; + public static final int fitBottomStart = 0x7f070041; + public static final int fitCenter = 0x7f070042; + public static final int fitEnd = 0x7f070043; + public static final int fitStart = 0x7f070044; + public static final int fitXY = 0x7f070045; + public static final int focusCrop = 0x7f070046; + public static final int forever = 0x7f070047; + public static final int fps_text = 0x7f070048; + public static final int group_divider = 0x7f070049; + public static final int home = 0x7f07004a; + public static final int icon = 0x7f07004c; + public static final int icon_group = 0x7f07004d; + public static final int image = 0x7f07004f; + public static final int info = 0x7f070050; + public static final int italic = 0x7f070051; + public static final int left = 0x7f070052; + public static final int line1 = 0x7f070053; + public static final int line3 = 0x7f070054; + public static final int listMode = 0x7f070055; + public static final int list_item = 0x7f070056; + public static final int message = 0x7f070057; + public static final int multiply = 0x7f070059; + public static final int none = 0x7f07005b; + public static final int normal = 0x7f07005c; + public static final int notification_background = 0x7f07005d; + public static final int notification_main_column = 0x7f07005e; + public static final int notification_main_column_container = 0x7f07005f; + public static final int parentPanel = 0x7f070060; + public static final int progress_circular = 0x7f070061; + public static final int progress_horizontal = 0x7f070062; + public static final int radio = 0x7f070063; + public static final int react_test_id = 0x7f070064; + public static final int right = 0x7f070065; + public static final int right_icon = 0x7f070066; + public static final int right_side = 0x7f070067; + public static final int rn_frame_file = 0x7f070068; + public static final int rn_frame_method = 0x7f070069; + public static final int rn_redbox_dismiss_button = 0x7f07006a; + public static final int rn_redbox_line_separator = 0x7f07006b; + public static final int rn_redbox_loading_indicator = 0x7f07006c; + public static final int rn_redbox_reload_button = 0x7f07006d; + public static final int rn_redbox_report_button = 0x7f07006e; + public static final int rn_redbox_report_label = 0x7f07006f; + public static final int rn_redbox_stack = 0x7f070070; + public static final int screen = 0x7f070071; + public static final int scrollIndicatorDown = 0x7f070072; + public static final int scrollIndicatorUp = 0x7f070073; + public static final int scrollView = 0x7f070074; + public static final int search_badge = 0x7f070075; + public static final int search_bar = 0x7f070076; + public static final int search_button = 0x7f070077; + public static final int search_close_btn = 0x7f070078; + public static final int search_edit_frame = 0x7f070079; + public static final int search_go_btn = 0x7f07007a; + public static final int search_mag_icon = 0x7f07007b; + public static final int search_plate = 0x7f07007c; + public static final int search_src_text = 0x7f07007d; + public static final int search_voice_btn = 0x7f07007e; + public static final int select_dialog_listview = 0x7f07007f; + public static final int shortcut = 0x7f070080; + public static final int spacer = 0x7f070084; + public static final int split_action_bar = 0x7f070085; + public static final int src_atop = 0x7f070086; + public static final int src_in = 0x7f070087; + public static final int src_over = 0x7f070088; + public static final int start = 0x7f070089; + public static final int submenuarrow = 0x7f07008a; + public static final int submit_area = 0x7f07008b; + public static final int tabMode = 0x7f07008c; + public static final int tag_transition_group = 0x7f07008d; + public static final int tag_unhandled_key_event_manager = 0x7f07008e; + public static final int tag_unhandled_key_listeners = 0x7f07008f; + public static final int text = 0x7f070090; + public static final int text2 = 0x7f070091; + public static final int textSpacerNoButtons = 0x7f070092; + public static final int textSpacerNoTitle = 0x7f070093; + public static final int time = 0x7f070094; + public static final int title = 0x7f070095; + public static final int titleDividerNoCustom = 0x7f070096; + public static final int title_template = 0x7f070097; + public static final int top = 0x7f070098; + public static final int topPanel = 0x7f070099; + public static final int uniform = 0x7f07009a; + public static final int up = 0x7f07009b; + public static final int view_tag_instance_handle = 0x7f07009d; + public static final int view_tag_native_id = 0x7f07009e; + public static final int wrap_content = 0x7f0700a0; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f080000; + public static final int abc_config_activityShortDur = 0x7f080001; + public static final int cancel_button_image_alpha = 0x7f080002; + public static final int config_tooltipAnimTime = 0x7f080003; + public static final int react_native_dev_server_port = 0x7f080004; + public static final int react_native_inspector_proxy_port = 0x7f080005; + public static final int status_bar_notification_info_maxnum = 0x7f080006; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f090000; + public static final int abc_action_bar_up_container = 0x7f090001; + public static final int abc_action_menu_item_layout = 0x7f090002; + public static final int abc_action_menu_layout = 0x7f090003; + public static final int abc_action_mode_bar = 0x7f090004; + public static final int abc_action_mode_close_item_material = 0x7f090005; + public static final int abc_activity_chooser_view = 0x7f090006; + public static final int abc_activity_chooser_view_list_item = 0x7f090007; + public static final int abc_alert_dialog_button_bar_material = 0x7f090008; + public static final int abc_alert_dialog_material = 0x7f090009; + public static final int abc_alert_dialog_title_material = 0x7f09000a; + public static final int abc_cascading_menu_item_layout = 0x7f09000b; + public static final int abc_dialog_title_material = 0x7f09000c; + public static final int abc_expanded_menu_layout = 0x7f09000d; + public static final int abc_list_menu_item_checkbox = 0x7f09000e; + public static final int abc_list_menu_item_icon = 0x7f09000f; + public static final int abc_list_menu_item_layout = 0x7f090010; + public static final int abc_list_menu_item_radio = 0x7f090011; + public static final int abc_popup_menu_header_item_layout = 0x7f090012; + public static final int abc_popup_menu_item_layout = 0x7f090013; + public static final int abc_screen_content_include = 0x7f090014; + public static final int abc_screen_simple = 0x7f090015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f090016; + public static final int abc_screen_toolbar = 0x7f090017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f090018; + public static final int abc_search_view = 0x7f090019; + public static final int abc_select_dialog_material = 0x7f09001a; + public static final int abc_tooltip = 0x7f09001b; + public static final int dev_loading_view = 0x7f09001c; + public static final int fps_view = 0x7f09001d; + public static final int notification_action = 0x7f09001e; + public static final int notification_action_tombstone = 0x7f09001f; + public static final int notification_template_custom_big = 0x7f090020; + public static final int notification_template_icon_group = 0x7f090021; + public static final int notification_template_part_chronometer = 0x7f090022; + public static final int notification_template_part_time = 0x7f090023; + public static final int redbox_item_frame = 0x7f090024; + public static final int redbox_item_title = 0x7f090025; + public static final int redbox_view = 0x7f090026; + public static final int select_dialog_item_material = 0x7f090027; + public static final int select_dialog_multichoice_material = 0x7f090028; + public static final int select_dialog_singlechoice_material = 0x7f090029; + public static final int support_simple_spinner_dropdown_item = 0x7f09002a; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0b0000; + public static final int abc_action_bar_up_description = 0x7f0b0001; + public static final int abc_action_menu_overflow_description = 0x7f0b0002; + public static final int abc_action_mode_done = 0x7f0b0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0b0004; + public static final int abc_activitychooserview_choose_application = 0x7f0b0005; + public static final int abc_capital_off = 0x7f0b0006; + public static final int abc_capital_on = 0x7f0b0007; + public static final int abc_font_family_body_1_material = 0x7f0b0008; + public static final int abc_font_family_body_2_material = 0x7f0b0009; + public static final int abc_font_family_button_material = 0x7f0b000a; + public static final int abc_font_family_caption_material = 0x7f0b000b; + public static final int abc_font_family_display_1_material = 0x7f0b000c; + public static final int abc_font_family_display_2_material = 0x7f0b000d; + public static final int abc_font_family_display_3_material = 0x7f0b000e; + public static final int abc_font_family_display_4_material = 0x7f0b000f; + public static final int abc_font_family_headline_material = 0x7f0b0010; + public static final int abc_font_family_menu_material = 0x7f0b0011; + public static final int abc_font_family_subhead_material = 0x7f0b0012; + public static final int abc_font_family_title_material = 0x7f0b0013; + public static final int abc_menu_alt_shortcut_label = 0x7f0b0014; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0b0015; + public static final int abc_menu_delete_shortcut_label = 0x7f0b0016; + public static final int abc_menu_enter_shortcut_label = 0x7f0b0017; + public static final int abc_menu_function_shortcut_label = 0x7f0b0018; + public static final int abc_menu_meta_shortcut_label = 0x7f0b0019; + public static final int abc_menu_shift_shortcut_label = 0x7f0b001a; + public static final int abc_menu_space_shortcut_label = 0x7f0b001b; + public static final int abc_menu_sym_shortcut_label = 0x7f0b001c; + public static final int abc_prepend_shortcut_label = 0x7f0b001d; + public static final int abc_search_hint = 0x7f0b001e; + public static final int abc_searchview_description_clear = 0x7f0b001f; + public static final int abc_searchview_description_query = 0x7f0b0020; + public static final int abc_searchview_description_search = 0x7f0b0021; + public static final int abc_searchview_description_submit = 0x7f0b0022; + public static final int abc_searchview_description_voice = 0x7f0b0023; + public static final int abc_shareactionprovider_share_with = 0x7f0b0024; + public static final int abc_shareactionprovider_share_with_application = 0x7f0b0025; + public static final int abc_toolbar_collapse_description = 0x7f0b0026; + public static final int alert_description = 0x7f0b0027; + public static final int catalyst_change_bundle_location = 0x7f0b0029; + public static final int catalyst_copy_button = 0x7f0b002a; + public static final int catalyst_debug = 0x7f0b002b; + public static final int catalyst_debug_chrome = 0x7f0b002c; + public static final int catalyst_debug_chrome_stop = 0x7f0b002d; + public static final int catalyst_debug_connecting = 0x7f0b002e; + public static final int catalyst_debug_error = 0x7f0b002f; + public static final int catalyst_debug_nuclide = 0x7f0b0030; + public static final int catalyst_debug_nuclide_error = 0x7f0b0031; + public static final int catalyst_debug_stop = 0x7f0b0032; + public static final int catalyst_dismiss_button = 0x7f0b0033; + public static final int catalyst_heap_capture = 0x7f0b0034; + public static final int catalyst_hot_reloading = 0x7f0b0035; + public static final int catalyst_hot_reloading_auto_disable = 0x7f0b0036; + public static final int catalyst_hot_reloading_auto_enable = 0x7f0b0037; + public static final int catalyst_hot_reloading_stop = 0x7f0b0038; + public static final int catalyst_inspector = 0x7f0b0039; + public static final int catalyst_loading_from_url = 0x7f0b003a; + public static final int catalyst_perf_monitor = 0x7f0b003b; + public static final int catalyst_perf_monitor_stop = 0x7f0b003c; + public static final int catalyst_reload = 0x7f0b003d; + public static final int catalyst_reload_button = 0x7f0b003e; + public static final int catalyst_reload_error = 0x7f0b003f; + public static final int catalyst_report_button = 0x7f0b0040; + public static final int catalyst_sample_profiler_disable = 0x7f0b0041; + public static final int catalyst_sample_profiler_enable = 0x7f0b0042; + public static final int catalyst_settings = 0x7f0b0043; + public static final int catalyst_settings_title = 0x7f0b0044; + public static final int combobox_description = 0x7f0b0045; + public static final int header_description = 0x7f0b0046; + public static final int image_description = 0x7f0b0047; + public static final int imagebutton_description = 0x7f0b0048; + public static final int link_description = 0x7f0b0049; + public static final int menu_description = 0x7f0b004a; + public static final int menubar_description = 0x7f0b004b; + public static final int menuitem_description = 0x7f0b004c; + public static final int progressbar_description = 0x7f0b004d; + public static final int radiogroup_description = 0x7f0b004e; + public static final int rn_tab_description = 0x7f0b004f; + public static final int scrollbar_description = 0x7f0b0050; + public static final int search_description = 0x7f0b0051; + public static final int search_menu_title = 0x7f0b0052; + public static final int spinbutton_description = 0x7f0b0053; + public static final int state_busy_description = 0x7f0b0054; + public static final int state_collapsed_description = 0x7f0b0055; + public static final int state_expanded_description = 0x7f0b0056; + public static final int state_mixed_description = 0x7f0b0057; + public static final int state_off_description = 0x7f0b0058; + public static final int state_on_description = 0x7f0b0059; + public static final int status_bar_notification_info_overflow = 0x7f0b005a; + public static final int summary_description = 0x7f0b005b; + public static final int tablist_description = 0x7f0b005c; + public static final int timer_description = 0x7f0b005d; + public static final int toolbar_description = 0x7f0b005e; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0c0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0c0001; + public static final int Animation_AppCompat_Dialog = 0x7f0c0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0c0003; + public static final int Animation_AppCompat_Tooltip = 0x7f0c0004; + public static final int Animation_Catalyst_RedBox = 0x7f0c0005; + public static final int Base_AlertDialog_AppCompat = 0x7f0c0007; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0c0008; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0c0009; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0c000a; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f0c000b; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0c000d; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0c000c; + public static final int Base_TextAppearance_AppCompat = 0x7f0c000e; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0c000f; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0c0010; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0c0011; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0c0012; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0c0013; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0c0014; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0c0015; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0c0016; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0c0017; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0c0018; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0c0019; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0c001a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c001b; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c001c; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0c001d; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0c001e; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0c001f; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0c0020; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c0021; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0c0022; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0c0023; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0c0024; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0c0025; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c0026; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0c0027; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0c0028; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0c0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c0030; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0c0031; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0c0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0c0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0c0034; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c0035; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0c0036; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c0038; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0c0039; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c003a; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c003b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c003c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c003d; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0c004c; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0c004d; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0c004e; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c004f; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0c0050; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0c0051; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0c0052; + public static final int Base_Theme_AppCompat = 0x7f0c003e; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0c003f; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0c0040; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0c0044; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0c0041; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0c0042; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0c0043; + public static final int Base_Theme_AppCompat_Light = 0x7f0c0045; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0c0046; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0c0047; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c004b; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0c0048; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0c0049; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0c004a; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0c0057; + public static final int Base_V21_Theme_AppCompat = 0x7f0c0053; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0c0054; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0c0055; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0c0056; + public static final int Base_V22_Theme_AppCompat = 0x7f0c0058; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0c0059; + public static final int Base_V23_Theme_AppCompat = 0x7f0c005a; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0c005b; + public static final int Base_V26_Theme_AppCompat = 0x7f0c005c; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f0c005d; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0c005e; + public static final int Base_V28_Theme_AppCompat = 0x7f0c005f; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f0c0060; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0c0065; + public static final int Base_V7_Theme_AppCompat = 0x7f0c0061; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0c0062; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0c0063; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0c0064; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0066; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0c0067; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0c0068; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0c0069; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0c006a; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0c006b; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0c006c; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0c006d; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0c006e; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0c006f; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0c0070; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0c0071; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0c0072; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0073; + public static final int Base_Widget_AppCompat_Button = 0x7f0c0074; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0c007a; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0c007b; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0c0075; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0c0076; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0c0077; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0c0078; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0c0079; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0c007c; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0c007d; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0c007e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0c007f; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0c0080; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0c0081; + public static final int Base_Widget_AppCompat_EditText = 0x7f0c0082; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0c0083; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0c0084; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c0085; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c0086; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0087; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0088; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c0089; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0c008a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c008b; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0c008c; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0c008d; + public static final int Base_Widget_AppCompat_ListView = 0x7f0c008e; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0c008f; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0c0090; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0c0091; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0092; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0c0093; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0c0094; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c0095; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0c0096; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0c0097; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0c0098; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0c0099; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0c009a; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0c009b; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0c009c; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0c009d; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0c009e; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0c009f; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0c00a0; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c00a1; + public static final int CalendarDatePickerDialog = 0x7f0c00a2; + public static final int CalendarDatePickerStyle = 0x7f0c00a3; + public static final int ClockTimePickerDialog = 0x7f0c00a4; + public static final int ClockTimePickerStyle = 0x7f0c00a5; + public static final int DialogAnimationFade = 0x7f0c00a6; + public static final int DialogAnimationSlide = 0x7f0c00a7; + public static final int Platform_AppCompat = 0x7f0c00a8; + public static final int Platform_AppCompat_Light = 0x7f0c00a9; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0c00aa; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0c00ab; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0c00ac; + public static final int Platform_V21_AppCompat = 0x7f0c00ad; + public static final int Platform_V21_AppCompat_Light = 0x7f0c00ae; + public static final int Platform_V25_AppCompat = 0x7f0c00af; + public static final int Platform_V25_AppCompat_Light = 0x7f0c00b0; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0c00b1; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0c00b2; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0c00b3; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0c00b4; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0c00b5; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0c00b6; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0c00b7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0c00b8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0c00b9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0c00ba; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0c00c0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0c00bb; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0c00bc; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0c00bd; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0c00be; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0c00bf; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0c00c1; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0c00c2; + public static final int SpinnerDatePickerDialog = 0x7f0c00c3; + public static final int SpinnerDatePickerStyle = 0x7f0c00c4; + public static final int SpinnerTimePickerDialog = 0x7f0c00c5; + public static final int SpinnerTimePickerStyle = 0x7f0c00c6; + public static final int TextAppearance_AppCompat = 0x7f0c00c7; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0c00c8; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0c00c9; + public static final int TextAppearance_AppCompat_Button = 0x7f0c00ca; + public static final int TextAppearance_AppCompat_Caption = 0x7f0c00cb; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0c00cc; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0c00cd; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0c00ce; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0c00cf; + public static final int TextAppearance_AppCompat_Headline = 0x7f0c00d0; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0c00d1; + public static final int TextAppearance_AppCompat_Large = 0x7f0c00d2; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0c00d3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0c00d4; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0c00d5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c00d6; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c00d7; + public static final int TextAppearance_AppCompat_Medium = 0x7f0c00d8; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0c00d9; + public static final int TextAppearance_AppCompat_Menu = 0x7f0c00da; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c00db; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0c00dc; + public static final int TextAppearance_AppCompat_Small = 0x7f0c00dd; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0c00de; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0c00df; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c00e0; + public static final int TextAppearance_AppCompat_Title = 0x7f0c00e1; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0c00e2; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f0c00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c00e5; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c00e6; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c00e7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c00e9; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0c00ea; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c00eb; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0c00ec; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0c00ed; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0c00ee; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0c00ef; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0c00f0; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c00f1; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0c00f2; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c00f3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c00f4; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0c00f5; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c00f6; + public static final int TextAppearance_Compat_Notification = 0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00fb; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c00fc; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c00fd; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c00fe; + public static final int Theme = 0x7f0c00ff; + public static final int ThemeOverlay_AppCompat = 0x7f0c011c; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0c011d; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0c011e; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c011f; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0c0120; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0c0121; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0c0122; + public static final int Theme_AppCompat = 0x7f0c0100; + public static final int Theme_AppCompat_CompactMenu = 0x7f0c0101; + public static final int Theme_AppCompat_DayNight = 0x7f0c0102; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0c0103; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0c0104; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0c0107; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0c0105; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0c0106; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0c0108; + public static final int Theme_AppCompat_Dialog = 0x7f0c0109; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0c010c; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0c010a; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0c010b; + public static final int Theme_AppCompat_Light = 0x7f0c010d; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0c010e; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0c010f; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c0112; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0c0110; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0c0111; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0c0113; + public static final int Theme_AppCompat_NoActionBar = 0x7f0c0114; + public static final int Theme_Catalyst = 0x7f0c0115; + public static final int Theme_Catalyst_RedBox = 0x7f0c0116; + public static final int Theme_FullScreenDialog = 0x7f0c0117; + public static final int Theme_FullScreenDialogAnimatedFade = 0x7f0c0118; + public static final int Theme_FullScreenDialogAnimatedSlide = 0x7f0c0119; + public static final int Theme_ReactNative_AppCompat_Light = 0x7f0c011a; + public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen = 0x7f0c011b; + public static final int Widget_AppCompat_ActionBar = 0x7f0c0123; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0c0124; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0c0125; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0c0126; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0c0127; + public static final int Widget_AppCompat_ActionButton = 0x7f0c0128; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0c0129; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0c012a; + public static final int Widget_AppCompat_ActionMode = 0x7f0c012b; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0c012c; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0c012d; + public static final int Widget_AppCompat_Button = 0x7f0c012e; + public static final int Widget_AppCompat_ButtonBar = 0x7f0c0134; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0c0135; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0c012f; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0c0130; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0c0131; + public static final int Widget_AppCompat_Button_Colored = 0x7f0c0132; + public static final int Widget_AppCompat_Button_Small = 0x7f0c0133; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0c0136; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0c0137; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0c0138; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0c0139; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0c013a; + public static final int Widget_AppCompat_EditText = 0x7f0c013b; + public static final int Widget_AppCompat_ImageButton = 0x7f0c013c; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0c013d; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c013e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0c013f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c0140; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0c0141; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0142; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0143; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c0144; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0c0145; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0c0146; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0c0147; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0c0148; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0c0149; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0c014a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0c014b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0c014c; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0c014d; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0c014e; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0c014f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c0150; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0c0151; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0c0152; + public static final int Widget_AppCompat_ListMenuView = 0x7f0c0153; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0c0154; + public static final int Widget_AppCompat_ListView = 0x7f0c0155; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0c0156; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0c0157; + public static final int Widget_AppCompat_PopupMenu = 0x7f0c0158; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0159; + public static final int Widget_AppCompat_PopupWindow = 0x7f0c015a; + public static final int Widget_AppCompat_ProgressBar = 0x7f0c015b; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c015c; + public static final int Widget_AppCompat_RatingBar = 0x7f0c015d; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0c015e; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0c015f; + public static final int Widget_AppCompat_SearchView = 0x7f0c0160; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0c0161; + public static final int Widget_AppCompat_SeekBar = 0x7f0c0162; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0c0163; + public static final int Widget_AppCompat_Spinner = 0x7f0c0164; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0c0165; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0c0166; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0c0167; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0c0168; + public static final int Widget_AppCompat_Toolbar = 0x7f0c0169; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c016a; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; + public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout = 0x7f0c016d; + public static final int redboxButton = 0x7f0c016e; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f020034, 0x7f020036, 0x7f020037, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020063, 0x7f020068, 0x7f020069, 0x7f020074, 0x7f020087, 0x7f020088, 0x7f020089, 0x7f02008a, 0x7f02008b, 0x7f020090, 0x7f020093, 0x7f0200a9, 0x7f0200b0, 0x7f0200be, 0x7f0200c5, 0x7f0200c6, 0x7f0200f1, 0x7f0200f4, 0x7f02010f, 0x7f020118 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f020034, 0x7f020036, 0x7f02004b, 0x7f020087, 0x7f0200f4, 0x7f020118 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f020075, 0x7f020091 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f020042, 0x7f020043, 0x7f0200a0, 0x7f0200a1, 0x7f0200ad, 0x7f0200e6, 0x7f0200e7 }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AnimatedStateListDrawableCompat = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int[] AnimatedStateListDrawableItem = { 0x10100d0, 0x1010199 }; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int[] AnimatedStateListDrawableTransition = { 0x1010199, 0x1010449, 0x101044a, 0x101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f0200ec, 0x7f02010d, 0x7f02010e }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f02010a, 0x7f02010b, 0x7f02010c }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f02002f, 0x7f020030, 0x7f020031, 0x7f020032, 0x7f020033, 0x7f020079, 0x7f02007b, 0x7f020095, 0x7f02009d, 0x7f0200fa }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_firstBaselineToTopHeight = 6; + public static final int AppCompatTextView_fontFamily = 7; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 8; + public static final int AppCompatTextView_lineHeight = 9; + public static final int AppCompatTextView_textAllCaps = 10; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020025, 0x7f020026, 0x7f020027, 0x7f020028, 0x7f02002e, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f02003f, 0x7f020040, 0x7f020044, 0x7f020045, 0x7f020048, 0x7f020049, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020057, 0x7f020058, 0x7f020061, 0x7f020065, 0x7f020066, 0x7f020067, 0x7f02006a, 0x7f02006c, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073, 0x7f020089, 0x7f02008f, 0x7f02009e, 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bd, 0x7f0200bf, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200df, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e9, 0x7f0200ea, 0x7f0200f8, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f020100, 0x7f020101, 0x7f020102, 0x7f020103, 0x7f020104, 0x7f020119, 0x7f02011a, 0x7f02011b, 0x7f02011c, 0x7f020123, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f020129, 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f02012d, 0x7f02012e }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorError = 54; + public static final int AppCompatTheme_colorPrimary = 55; + public static final int AppCompatTheme_colorPrimaryDark = 56; + public static final int AppCompatTheme_colorSwitchThumbNormal = 57; + public static final int AppCompatTheme_controlBackground = 58; + public static final int AppCompatTheme_dialogCornerRadius = 59; + public static final int AppCompatTheme_dialogPreferredPadding = 60; + public static final int AppCompatTheme_dialogTheme = 61; + public static final int AppCompatTheme_dividerHorizontal = 62; + public static final int AppCompatTheme_dividerVertical = 63; + public static final int AppCompatTheme_dropDownListViewStyle = 64; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65; + public static final int AppCompatTheme_editTextBackground = 66; + public static final int AppCompatTheme_editTextColor = 67; + public static final int AppCompatTheme_editTextStyle = 68; + public static final int AppCompatTheme_homeAsUpIndicator = 69; + public static final int AppCompatTheme_imageButtonStyle = 70; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71; + public static final int AppCompatTheme_listDividerAlertDialog = 72; + public static final int AppCompatTheme_listMenuViewStyle = 73; + public static final int AppCompatTheme_listPopupWindowStyle = 74; + public static final int AppCompatTheme_listPreferredItemHeight = 75; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 78; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 79; + public static final int AppCompatTheme_panelBackground = 80; + public static final int AppCompatTheme_panelMenuListTheme = 81; + public static final int AppCompatTheme_panelMenuListWidth = 82; + public static final int AppCompatTheme_popupMenuStyle = 83; + public static final int AppCompatTheme_popupWindowStyle = 84; + public static final int AppCompatTheme_radioButtonStyle = 85; + public static final int AppCompatTheme_ratingBarStyle = 86; + public static final int AppCompatTheme_ratingBarStyleIndicator = 87; + public static final int AppCompatTheme_ratingBarStyleSmall = 88; + public static final int AppCompatTheme_searchViewStyle = 89; + public static final int AppCompatTheme_seekBarStyle = 90; + public static final int AppCompatTheme_selectableItemBackground = 91; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 92; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 93; + public static final int AppCompatTheme_spinnerStyle = 94; + public static final int AppCompatTheme_switchStyle = 95; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 96; + public static final int AppCompatTheme_textAppearanceListItem = 97; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 98; + public static final int AppCompatTheme_textAppearanceListItemSmall = 99; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 100; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 102; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 103; + public static final int AppCompatTheme_textColorAlertDialogListItem = 104; + public static final int AppCompatTheme_textColorSearchUrl = 105; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 106; + public static final int AppCompatTheme_toolbarStyle = 107; + public static final int AppCompatTheme_tooltipForegroundColor = 108; + public static final int AppCompatTheme_tooltipFrameBackground = 109; + public static final int AppCompatTheme_viewInflaterClass = 110; + public static final int AppCompatTheme_windowActionBar = 111; + public static final int AppCompatTheme_windowActionBarOverlay = 112; + public static final int AppCompatTheme_windowActionModeOverlay = 113; + public static final int AppCompatTheme_windowFixedHeightMajor = 114; + public static final int AppCompatTheme_windowFixedHeightMinor = 115; + public static final int AppCompatTheme_windowFixedWidthMajor = 116; + public static final int AppCompatTheme_windowFixedWidthMinor = 117; + public static final int AppCompatTheme_windowMinWidthMajor = 118; + public static final int AppCompatTheme_windowMinWidthMinor = 119; + public static final int AppCompatTheme_windowNoTitle = 120; + public static final int[] ButtonBarLayout = { 0x7f020029 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f02002a }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f020046, 0x7f020047 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f0200ee }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] DrawerArrowToggle = { 0x7f02002c, 0x7f02002d, 0x7f02003a, 0x7f02004e, 0x7f02006d, 0x7f020085, 0x7f0200e8, 0x7f020106 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GenericDraweeHierarchy = { 0x7f020023, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 }; + public static final int GenericDraweeHierarchy_actualImageScaleType = 0; + public static final int GenericDraweeHierarchy_backgroundImage = 1; + public static final int GenericDraweeHierarchy_fadeDuration = 2; + public static final int GenericDraweeHierarchy_failureImage = 3; + public static final int GenericDraweeHierarchy_failureImageScaleType = 4; + public static final int GenericDraweeHierarchy_overlayImage = 5; + public static final int GenericDraweeHierarchy_placeholderImage = 6; + public static final int GenericDraweeHierarchy_placeholderImageScaleType = 7; + public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 8; + public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; + public static final int GenericDraweeHierarchy_progressBarImage = 10; + public static final int GenericDraweeHierarchy_progressBarImageScaleType = 11; + public static final int GenericDraweeHierarchy_retryImage = 12; + public static final int GenericDraweeHierarchy_retryImageScaleType = 13; + public static final int GenericDraweeHierarchy_roundAsCircle = 14; + public static final int GenericDraweeHierarchy_roundBottomEnd = 15; + public static final int GenericDraweeHierarchy_roundBottomLeft = 16; + public static final int GenericDraweeHierarchy_roundBottomRight = 17; + public static final int GenericDraweeHierarchy_roundBottomStart = 18; + public static final int GenericDraweeHierarchy_roundTopEnd = 19; + public static final int GenericDraweeHierarchy_roundTopLeft = 20; + public static final int GenericDraweeHierarchy_roundTopRight = 21; + public static final int GenericDraweeHierarchy_roundTopStart = 22; + public static final int GenericDraweeHierarchy_roundWithOverlayColor = 23; + public static final int GenericDraweeHierarchy_roundedCornerRadius = 24; + public static final int GenericDraweeHierarchy_roundingBorderColor = 25; + public static final int GenericDraweeHierarchy_roundingBorderPadding = 26; + public static final int GenericDraweeHierarchy_roundingBorderWidth = 27; + public static final int GenericDraweeHierarchy_viewAspectRatio = 28; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f020069, 0x7f02006b, 0x7f0200ac, 0x7f0200e4 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f02002b, 0x7f02005a, 0x7f02008c, 0x7f02008d, 0x7f0200b1, 0x7f0200e3, 0x7f02011d }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f0200c0, 0x7f0200ef }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f0200b2 }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f0200ed }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f0200b4, 0x7f0200b7 }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f02004a, 0x7f020059, 0x7f020064, 0x7f020086, 0x7f02008e, 0x7f020096, 0x7f0200c7, 0x7f0200c8, 0x7f0200dd, 0x7f0200de, 0x7f0200f0, 0x7f0200f5, 0x7f020124 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] SimpleDraweeView = { 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 }; + public static final int SimpleDraweeView_actualImageResource = 0; + public static final int SimpleDraweeView_actualImageScaleType = 1; + public static final int SimpleDraweeView_actualImageUri = 2; + public static final int SimpleDraweeView_backgroundImage = 3; + public static final int SimpleDraweeView_fadeDuration = 4; + public static final int SimpleDraweeView_failureImage = 5; + public static final int SimpleDraweeView_failureImageScaleType = 6; + public static final int SimpleDraweeView_overlayImage = 7; + public static final int SimpleDraweeView_placeholderImage = 8; + public static final int SimpleDraweeView_placeholderImageScaleType = 9; + public static final int SimpleDraweeView_pressedStateOverlayImage = 10; + public static final int SimpleDraweeView_progressBarAutoRotateInterval = 11; + public static final int SimpleDraweeView_progressBarImage = 12; + public static final int SimpleDraweeView_progressBarImageScaleType = 13; + public static final int SimpleDraweeView_retryImage = 14; + public static final int SimpleDraweeView_retryImageScaleType = 15; + public static final int SimpleDraweeView_roundAsCircle = 16; + public static final int SimpleDraweeView_roundBottomEnd = 17; + public static final int SimpleDraweeView_roundBottomLeft = 18; + public static final int SimpleDraweeView_roundBottomRight = 19; + public static final int SimpleDraweeView_roundBottomStart = 20; + public static final int SimpleDraweeView_roundTopEnd = 21; + public static final int SimpleDraweeView_roundTopLeft = 22; + public static final int SimpleDraweeView_roundTopRight = 23; + public static final int SimpleDraweeView_roundTopStart = 24; + public static final int SimpleDraweeView_roundWithOverlayColor = 25; + public static final int SimpleDraweeView_roundedCornerRadius = 26; + public static final int SimpleDraweeView_roundingBorderColor = 27; + public static final int SimpleDraweeView_roundingBorderPadding = 28; + public static final int SimpleDraweeView_roundingBorderWidth = 29; + public static final int SimpleDraweeView_viewAspectRatio = 30; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f0200be }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] StateListDrawable = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_visible = 1; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int[] StateListDrawableItem = { 0x1010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f0200e5, 0x7f0200eb, 0x7f0200f6, 0x7f0200f7, 0x7f0200f9, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02011e, 0x7f02011f, 0x7f020120 }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x7f02007b, 0x7f0200fa }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_fontFamily = 11; + public static final int TextAppearance_textAllCaps = 12; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f020041, 0x7f02004c, 0x7f02004d, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ae, 0x7f0200af, 0x7f0200be, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, 0x7f02010f, 0x7f020110, 0x7f020111, 0x7f020112, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f020116, 0x7f020117 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f0200b5, 0x7f0200b6, 0x7f020105 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f020038, 0x7f020039 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } + public static final class xml { + private xml() {} + + public static final int rn_dev_preferences = 0x7f0e0000; + } +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/soloader/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/soloader/R.java new file mode 100644 index 0000000..de06401 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/facebook/soloader/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.facebook.soloader; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/memoapp/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/memoapp/R.java new file mode 100644 index 0000000..ce2c04b --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/memoapp/R.java @@ -0,0 +1,12260 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.memoapp; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f010000; + public static final int abc_fade_out=0x7f010001; + public static final int abc_grow_fade_in_from_bottom=0x7f010002; + public static final int abc_popup_enter=0x7f010003; + public static final int abc_popup_exit=0x7f010004; + public static final int abc_shrink_fade_out_from_bottom=0x7f010005; + public static final int abc_slide_in_bottom=0x7f010006; + public static final int abc_slide_in_top=0x7f010007; + public static final int abc_slide_out_bottom=0x7f010008; + public static final int abc_slide_out_top=0x7f010009; + public static final int abc_tooltip_enter=0x7f01000a; + public static final int abc_tooltip_exit=0x7f01000b; + public static final int catalyst_fade_in=0x7f01000c; + public static final int catalyst_fade_out=0x7f01000d; + public static final int catalyst_push_up_in=0x7f01000e; + public static final int catalyst_push_up_out=0x7f01000f; + public static final int catalyst_slide_down=0x7f010010; + public static final int catalyst_slide_up=0x7f010011; + } + public static final class attr { + /** + * Custom divider drawable to use for elements in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarDivider=0x7f020000; + /** + * Custom item state list drawable background for action bar items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarItemBackground=0x7f020001; + /** + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarPopupTheme=0x7f020002; + /** + * Size of the Action Bar, including the contextual + * bar used to present Action Modes. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f020003; + /** + * Reference to a style for the split Action Bar. This style + * controls the split component that holds the menu/action + * buttons. actionBarStyle is still used for the primary + * bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarSplitStyle=0x7f020004; + /** + * Reference to a style for the Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarStyle=0x7f020005; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabBarStyle=0x7f020006; + /** + * Default style for tabs within an action bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabStyle=0x7f020007; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabTextStyle=0x7f020008; + /** + * Reference to a theme that should be used to inflate the + * action bar. This will be inherited by any widget inflated + * into the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTheme=0x7f020009; + /** + * Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar. Most of the time + * this will be a reference to the current theme, but when + * the action bar has a significantly different contrast + * profile than the rest of the activity the difference + * can become important. If this is set to @null the current + * theme will be used. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarWidgetTheme=0x7f02000a; + /** + * Default action button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionButtonStyle=0x7f02000b; + /** + * Default ActionBar dropdown style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionDropDownStyle=0x7f02000c; + /** + * An optional layout to be used as an action view. + * See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionLayout=0x7f02000d; + /** + * TextAppearance style that will be applied to text that + * appears within action menu items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionMenuTextAppearance=0x7f02000e; + /** + * Color for text that appears within action menu items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f02000f; + /** + * Background drawable to use for action mode UI + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeBackground=0x7f020010; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseButtonStyle=0x7f020011; + /** + * Drawable to use for the close action mode button + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseDrawable=0x7f020012; + /** + * Drawable to use for the Copy action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCopyDrawable=0x7f020013; + /** + * Drawable to use for the Cut action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCutDrawable=0x7f020014; + /** + * Drawable to use for the Find action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeFindDrawable=0x7f020015; + /** + * Drawable to use for the Paste action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePasteDrawable=0x7f020016; + /** + * PopupWindow style to use for action modes when showing as a window overlay. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePopupWindowStyle=0x7f020017; + /** + * Drawable to use for the Select all action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSelectAllDrawable=0x7f020018; + /** + * Drawable to use for the Share action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeShareDrawable=0x7f020019; + /** + * Background drawable to use for action mode UI in the lower split bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSplitBackground=0x7f02001a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeStyle=0x7f02001b; + /** + * Drawable to use for the Web Search action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeWebSearchDrawable=0x7f02001c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowButtonStyle=0x7f02001d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowMenuStyle=0x7f02001e; + /** + * The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item. + * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + * for more info. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionProviderClass=0x7f02001f; + /** + * The name of an optional View class to instantiate and use as an + * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionViewClass=0x7f020020; + /** + * Default ActivityChooserView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int activityChooserViewStyle=0x7f020021; + /** + * An image reference + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actualImageResource=0x7f020022; + /** + * Scale type of the actual image. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ */ + public static final int actualImageScaleType=0x7f020023; + /** + * An image uri . + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actualImageUri=0x7f020024; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogButtonGroupStyle=0x7f020025; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int alertDialogCenterButtons=0x7f020026; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogStyle=0x7f020027; + /** + * Theme to use for alert dialogs spawned from this theme. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogTheme=0x7f020028; + /** + * Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int allowStacking=0x7f020029; + /** + * Alpha multiplier applied to the base color. + *

May be a floating point value, such as "1.2". + */ + public static final int alpha=0x7f02002a; + /** + * The alphabetic modifier key. This is the modifier when using a keyboard + * with alphabetic keys. The values should be kept in sync with KeyEvent + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int alphabeticModifiers=0x7f02002b; + /** + * The length of the arrow head when formed to make an arrow + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowHeadLength=0x7f02002c; + /** + * The length of the shaft when formed to make an arrow + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowShaftLength=0x7f02002d; + /** + * Default AutoCompleteTextView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoCompleteTextViewStyle=0x7f02002e; + /** + * The maximum text size constraint to be used when auto-sizing text. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMaxTextSize=0x7f02002f; + /** + * The minimum text size constraint to be used when auto-sizing text. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMinTextSize=0x7f020030; + /** + * Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform. Overrides + * autoSizeStepGranularity if set. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoSizePresetSizes=0x7f020031; + /** + * Specify the auto-size step size if autoSizeTextType is set to + * uniform. The default is 1px. Overwrites + * autoSizePresetSizes if set. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeStepGranularity=0x7f020032; + /** + * Specify the type of auto-size. Note that this feature is not supported by EditText, + * works only for TextView. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ */ + public static final int autoSizeTextType=0x7f020033; + /** + * Specifies a background drawable for the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int background=0x7f020034; + /** + * A drawable or color to be used as a background. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int backgroundImage=0x7f020035; + /** + * Specifies a background drawable for the bottom component of a split action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundSplit=0x7f020036; + /** + * Specifies a background drawable for a second stacked row of the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundStacked=0x7f020037; + /** + * Tint to apply to the background. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundTint=0x7f020038; + /** + * Blending mode used to apply the background tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int backgroundTintMode=0x7f020039; + /** + * The length of the bars when they are parallel to each other + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int barLength=0x7f02003a; + /** + * Style for buttons without an explicit border, often used in groups. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int borderlessButtonStyle=0x7f02003b; + /** + * Style for buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarButtonStyle=0x7f02003c; + /** + * Style for the "negative" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f02003d; + /** + * Style for the "neutral" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f02003e; + /** + * Style for the "positive" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f02003f; + /** + * Style for button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarStyle=0x7f020040; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int buttonGravity=0x7f020041; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int buttonIconDimen=0x7f020042; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonPanelSideLayout=0x7f020043; + /** + * Normal Button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyle=0x7f020044; + /** + * Small Button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyleSmall=0x7f020045; + /** + * Tint to apply to the button drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int buttonTint=0x7f020046; + /** + * Blending mode used to apply the button tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int buttonTintMode=0x7f020047; + /** + * Default Checkbox style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkboxStyle=0x7f020048; + /** + * Default CheckedTextView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedTextViewStyle=0x7f020049; + /** + * Close button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeIcon=0x7f02004a; + /** + * Specifies a layout to use for the "close" item at the starting edge. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeItemLayout=0x7f02004b; + /** + * Text to set as the content description for the collapse button. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int collapseContentDescription=0x7f02004c; + /** + * Icon drawable to use for the collapse button. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapseIcon=0x7f02004d; + /** + * The drawing color for the bars + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int color=0x7f02004e; + /** + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorAccent=0x7f02004f; + /** + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorBackgroundFloating=0x7f020050; + /** + * The color applied to framework buttons in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorButtonNormal=0x7f020051; + /** + * The color applied to framework controls in their activated (ex. checked) state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlActivated=0x7f020052; + /** + * The color applied to framework control highlights (ex. ripples, list selectors). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlHighlight=0x7f020053; + /** + * The color applied to framework controls in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlNormal=0x7f020054; + /** + * Color used for error states and things that need to be drawn to + * the user's attention. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorError=0x7f020055; + /** + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimary=0x7f020056; + /** + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryDark=0x7f020057; + /** + * The color applied to framework switch thumbs in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSwitchThumbNormal=0x7f020058; + /** + * Commit icon shown in the query suggestion row + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int commitIcon=0x7f020059; + /** + * The content description associated with the item. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int contentDescription=0x7f02005a; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEnd=0x7f02005b; + /** + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEndWithActions=0x7f02005c; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetLeft=0x7f02005d; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetRight=0x7f02005e; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStart=0x7f02005f; + /** + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStartWithNavigation=0x7f020060; + /** + * The background used by framework controls. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int controlBackground=0x7f020061; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int coordinatorLayoutStyle=0x7f020062; + /** + * Specifies a layout for custom navigation. Overrides navigationMode. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int customNavigationLayout=0x7f020063; + /** + * Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int defaultQueryHint=0x7f020064; + /** + * Preferred corner radius of dialogs. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogCornerRadius=0x7f020065; + /** + * Preferred padding for dialog content. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogPreferredPadding=0x7f020066; + /** + * Theme to use for dialogs spawned from this theme. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dialogTheme=0x7f020067; + /** + * Options affecting how the action bar is displayed. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ */ + public static final int displayOptions=0x7f020068; + /** + * Specifies the drawable used for item dividers. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int divider=0x7f020069; + /** + * A drawable that may be used as a horizontal divider between visual elements. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerHorizontal=0x7f02006a; + /** + * Size of padding on either end of a divider. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerPadding=0x7f02006b; + /** + * A drawable that may be used as a vertical divider between visual elements. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerVertical=0x7f02006c; + /** + * The total size of the drawable + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int drawableSize=0x7f02006d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawerArrowStyle=0x7f02006e; + /** + * ListPopupWindow compatibility + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dropDownListViewStyle=0x7f02006f; + /** + * The preferred item height for dropdown lists. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dropdownListPreferredItemHeight=0x7f020070; + /** + * EditText background drawable. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextBackground=0x7f020071; + /** + * EditText text foreground color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int editTextColor=0x7f020072; + /** + * Default EditText style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextStyle=0x7f020073; + /** + * Elevation for the action bar itself + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int elevation=0x7f020074; + /** + * The drawable to show in the button for expanding the activities overflow popup. + * Note: Clients would like to set this drawable + * as a clue about the action the chosen activity will perform. For + * example, if share activity is to be chosen the drawable should + * give a clue that sharing is to be performed. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f020075; + /** + * Fade duration in milliseconds. + *

May be an integer value, such as "100". + */ + public static final int fadeDuration=0x7f020076; + /** + * A drawable to be be used as a failure image. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int failureImage=0x7f020077; + /** + * Scale type of the failure image. Ignored if failureImage is not specified. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ */ + public static final int failureImageScaleType=0x7f020078; + /** + * Distance from the top of the TextView to the first text baseline. If set, this + * overrides the value set for paddingTop. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int firstBaselineToTopHeight=0x7f020079; + /** + * The reference to the font file to be used. This should be a file in the res/font folder + * and should therefore have an R reference value. E.g. @font/myfont + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int font=0x7f02007a; + /** + * The attribute for the font family. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontFamily=0x7f02007b; + /** + * The authority of the Font Provider to be used for the request. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderAuthority=0x7f02007c; + /** + * The sets of hashes for the certificates the provider should be signed with. This is + * used to verify the identity of the provider, and is only required if the provider is not + * part of the system image. This value may point to one list or a list of lists, where each + * individual list represents one collection of signature hashes. Refer to your font provider's + * documentation for these values. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fontProviderCerts=0x7f02007d; + /** + * The strategy to be used when fetching font data from a font provider in XML layouts. + * This attribute is ignored when the resource is loaded from code, as it is equivalent to the + * choice of API between {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + * {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + * (async). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requeted font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ */ + public static final int fontProviderFetchStrategy=0x7f02007e; + /** + * The length of the timeout during fetching. + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f02007f; + /** + * The package for the Font Provider to be used for the request. This is used to verify + * the identity of the provider. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderPackage=0x7f020080; + /** + * The query to be sent over to the provider. Refer to your font provider's documentation + * on the format of this string. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderQuery=0x7f020081; + /** + * The style of the given font file. This will be used when the font is being loaded into + * the font stack and will override any style information in the font's header tables. If + * unspecified, the value in the font's header tables will be used. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ */ + public static final int fontStyle=0x7f020082; + /** + * The variation settings to be applied to the font. The string should be in the following + * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + * used, or the font used does not support variation settings, this attribute needs not be + * specified. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontVariationSettings=0x7f020083; + /** + * The weight of the given font file. This will be used when the font is being loaded into + * the font stack and will override any weight information in the font's header tables. Must + * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + * in the font's header tables will be used. + *

May be an integer value, such as "100". + */ + public static final int fontWeight=0x7f020084; + /** + * The max gap between the bars when they are parallel to each other + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int gapBetweenBars=0x7f020085; + /** + * Go button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int goIcon=0x7f020086; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int height=0x7f020087; + /** + * Set true to hide the action bar on a vertical nested scroll of content. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnContentScroll=0x7f020088; + /** + * Specifies a drawable to use for the 'home as up' indicator. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeAsUpIndicator=0x7f020089; + /** + * Specifies a layout to use for the "home" section of the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeLayout=0x7f02008a; + /** + * Specifies the drawable used for the application icon. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int icon=0x7f02008b; + /** + * Tint to apply to the icon. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int iconTint=0x7f02008c; + /** + * Blending mode used to apply the icon tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int iconTintMode=0x7f02008d; + /** + * The default state of the SearchView. If true, it will be iconified when not in + * use and expanded when clicked. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int iconifiedByDefault=0x7f02008e; + /** + * ImageButton background drawable. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int imageButtonStyle=0x7f02008f; + /** + * Specifies a style resource to use for an indeterminate progress spinner. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int indeterminateProgressStyle=0x7f020090; + /** + * The maximal number of items initially shown in the activity list. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int initialActivityCount=0x7f020091; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isLightTheme=0x7f020092; + /** + * Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPadding=0x7f020093; + /** + * A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge. + * Child views can refer to these keylines for alignment using + * layout_keyline="index" where index is a 0-based index into + * this array. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int keylines=0x7f020094; + /** + * Distance from the bottom of the TextView to the last text baseline. If set, this + * overrides the value set for paddingBottom. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lastBaselineToBottomHeight=0x7f020095; + /** + * The layout to use for the search view. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout=0x7f020096; + /** + * The id of an anchor view that this view should position relative to. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_anchor=0x7f020097; + /** + * Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f020098; + /** + * The class name of a Behavior class defining special runtime behavior + * for this child view. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layout_behavior=0x7f020099; + /** + * Specifies how this view dodges the inset edges of the CoordinatorLayout. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ */ + public static final int layout_dodgeInsetEdges=0x7f02009a; + /** + * Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ */ + public static final int layout_insetEdge=0x7f02009b; + /** + * The index of a keyline this view should position relative to. + * android:layout_gravity will affect how the view aligns to the + * specified keyline. + *

May be an integer value, such as "100". + */ + public static final int layout_keyline=0x7f02009c; + /** + * Explicit height between lines of text. If set, this will override the values set + * for lineSpacingExtra and lineSpacingMultiplier. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineHeight=0x7f02009d; + /** + * Drawable used as a background for selected list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceBackgroundIndicator=0x7f02009e; + /** + * The list divider used in alert dialogs. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listDividerAlertDialog=0x7f02009f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listItemLayout=0x7f0200a0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listLayout=0x7f0200a1; + /** + * Default menu-style ListView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listMenuViewStyle=0x7f0200a2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listPopupWindowStyle=0x7f0200a3; + /** + * The preferred list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeight=0x7f0200a4; + /** + * A larger, more robust list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightLarge=0x7f0200a5; + /** + * A smaller, sleeker list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightSmall=0x7f0200a6; + /** + * The preferred padding along the left edge of list items. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingLeft=0x7f0200a7; + /** + * The preferred padding along the right edge of list items. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingRight=0x7f0200a8; + /** + * Specifies the drawable used for the application logo. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int logo=0x7f0200a9; + /** + * A content description string to describe the appearance of the + * associated logo image. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int logoDescription=0x7f0200aa; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxButtonHeight=0x7f0200ab; + /** + * When set to true, all children with a weight will be considered having + * the minimum size of the largest child. If false, all children are + * measured normally. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int measureWithLargestChild=0x7f0200ac; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int multiChoiceItemLayout=0x7f0200ad; + /** + * Text to set as the content description for the navigation button + * located at the start of the toolbar. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int navigationContentDescription=0x7f0200ae; + /** + * Icon drawable to use for the navigation button located at + * the start of the toolbar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationIcon=0x7f0200af; + /** + * The type of navigation to use. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ */ + public static final int navigationMode=0x7f0200b0; + /** + * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) + * keyboard. The values should be kept in sync with KeyEvent + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int numericModifiers=0x7f0200b1; + /** + * Whether the popup window should overlap its anchor view. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int overlapAnchor=0x7f0200b2; + /** + * A drawable or color to be used as an overlay. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int overlayImage=0x7f0200b3; + /** + * Bottom padding to use when no buttons are present. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingBottomNoButtons=0x7f0200b4; + /** + * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingEnd=0x7f0200b5; + /** + * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingStart=0x7f0200b6; + /** + * Top padding to use when no title is present. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingTopNoTitle=0x7f0200b7; + /** + * The background of a panel when it is inset from the left and right edges of the screen. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelBackground=0x7f0200b8; + /** + * Default Panel Menu style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelMenuListTheme=0x7f0200b9; + /** + * Default Panel Menu width. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int panelMenuListWidth=0x7f0200ba; + /** + * A drawable or color to be be used as a placeholder. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int placeholderImage=0x7f0200bb; + /** + * Scale type of the placeholder image. Ignored if placeholderImage is not specified. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ */ + public static final int placeholderImageScaleType=0x7f0200bc; + /** + * Default PopupMenu style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupMenuStyle=0x7f0200bd; + /** + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupTheme=0x7f0200be; + /** + * Default PopupWindow style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupWindowStyle=0x7f0200bf; + /** + * Whether space should be reserved in layout when an icon is missing. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int preserveIconSpacing=0x7f0200c0; + /** + * A drawable or color to be used as a pressed-state-overlay + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int pressedStateOverlayImage=0x7f0200c1; + /** + * Progress bar Auto Rotate interval in milliseconds + *

May be an integer value, such as "100". + */ + public static final int progressBarAutoRotateInterval=0x7f0200c2; + /** + * A drawable to be be used as a progress bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressBarImage=0x7f0200c3; + /** + * Scale type of the progress bar. Ignored if progressBarImage is not specified. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ */ + public static final int progressBarImageScaleType=0x7f0200c4; + /** + * Specifies the horizontal padding on either end for an embedded progress bar. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int progressBarPadding=0x7f0200c5; + /** + * Specifies a style resource to use for an embedded progress bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressBarStyle=0x7f0200c6; + /** + * Background for the section containing the search query + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int queryBackground=0x7f0200c7; + /** + * An optional user-defined query hint string to be displayed in the empty query field. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int queryHint=0x7f0200c8; + /** + * Default RadioButton style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int radioButtonStyle=0x7f0200c9; + /** + * Default RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyle=0x7f0200ca; + /** + * Indicator RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleIndicator=0x7f0200cb; + /** + * Small indicator RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleSmall=0x7f0200cc; + /** + * A drawable to be be used as a retry image. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int retryImage=0x7f0200cd; + /** + * Scale type of the retry image. Ignored if retryImage is not specified. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ */ + public static final int retryImageScaleType=0x7f0200ce; + /** + * Round as circle. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundAsCircle=0x7f0200cf; + /** + * Round the bottom-end edge. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundBottomEnd=0x7f0200d0; + /** + * Round the bottom-left corner. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundBottomLeft=0x7f0200d1; + /** + * Round the bottom-right corner. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundBottomRight=0x7f0200d2; + /** + * Round the bottom-start edge. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundBottomStart=0x7f0200d3; + /** + * Round the top-end edge. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundTopEnd=0x7f0200d4; + /** + * Round the top-left corner. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundTopLeft=0x7f0200d5; + /** + * Round the top-right corner. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundTopRight=0x7f0200d6; + /** + * Round the top-start edge. Ignored if roundAsCircle is used. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int roundTopStart=0x7f0200d7; + /** + * Round by overlying color. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int roundWithOverlayColor=0x7f0200d8; + /** + * Rounded corner radius. Ignored if roundAsCircle is used. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int roundedCornerRadius=0x7f0200d9; + /** + * Rounding border color + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int roundingBorderColor=0x7f0200da; + /** + * Rounding border padding + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int roundingBorderPadding=0x7f0200db; + /** + * Rounding border width + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int roundingBorderWidth=0x7f0200dc; + /** + * Search icon displayed as a text field hint + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchHintIcon=0x7f0200dd; + /** + * Search icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchIcon=0x7f0200de; + /** + * Style for the search query widget. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchViewStyle=0x7f0200df; + /** + * Default SeekBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int seekBarStyle=0x7f0200e0; + /** + * A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackground=0x7f0200e1; + /** + * Background drawable for borderless standalone items that need focus/pressed states. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0200e2; + /** + * How this item should display in the Action Bar, if present. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ */ + public static final int showAsAction=0x7f0200e3; + /** + * Setting for which dividers to show. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ */ + public static final int showDividers=0x7f0200e4; + /** + * Whether to draw on/off text. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showText=0x7f0200e5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showTitle=0x7f0200e6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int singleChoiceItemLayout=0x7f0200e7; + /** + * Whether bars should rotate or not during transition + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int spinBars=0x7f0200e8; + /** + * Default Spinner style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerDropDownItemStyle=0x7f0200e9; + /** + * Default Spinner style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerStyle=0x7f0200ea; + /** + * Whether to split the track and leave a gap for the thumb drawable. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int splitTrack=0x7f0200eb; + /** + * Sets a drawable as the content of this ImageView. Allows the use of vector drawable + * when running on older versions of the platform. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int srcCompat=0x7f0200ec; + /** + * State identifier indicating the popup will be above the anchor. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_above_anchor=0x7f0200ed; + /** + * Drawable to display behind the status bar when the view is set to draw behind it. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarBackground=0x7f0200ee; + /** + * Drawable for the arrow icon indicating a particular item is a submenu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subMenuArrow=0x7f0200ef; + /** + * Background for the section containing the action (e.g. voice search) + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int submitBackground=0x7f0200f0; + /** + * Specifies subtitle text used for navigationMode="normal" + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int subtitle=0x7f0200f1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextAppearance=0x7f0200f2; + /** + * A color to apply to the subtitle string. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int subtitleTextColor=0x7f0200f3; + /** + * Specifies a style to use for subtitle text. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextStyle=0x7f0200f4; + /** + * Layout for query suggestion rows + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int suggestionRowLayout=0x7f0200f5; + /** + * Minimum width for the switch component + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchMinWidth=0x7f0200f6; + /** + * Minimum space between the switch and caption text + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchPadding=0x7f0200f7; + /** + * Default style for the Switch widget. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchStyle=0x7f0200f8; + /** + * TextAppearance style for text displayed on the switch thumb. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchTextAppearance=0x7f0200f9; + /** + * Present the text in ALL CAPS. This may use a small-caps form when available. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textAllCaps=0x7f0200fa; + /** + * Text color, typeface, size, and style for the text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0200fb; + /** + * The preferred TextAppearance for the primary text of list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItem=0x7f0200fc; + /** + * The preferred TextAppearance for the secondary text of list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSecondary=0x7f0200fd; + /** + * The preferred TextAppearance for the primary text of small list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSmall=0x7f0200fe; + /** + * Text color, typeface, size, and style for header text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0200ff; + /** + * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f020100; + /** + * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultTitle=0x7f020101; + /** + * Text color, typeface, size, and style for small text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f020102; + /** + * Color of list item text in alert dialogs. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f020103; + /** + * Text color for urls in search suggestions, used by things like global search + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f020104; + /** + * Deprecated. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int theme=0x7f020105; + /** + * The thickness (stroke size) for the bar paint + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thickness=0x7f020106; + /** + * Amount of padding on either side of text within the switch thumb. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbTextPadding=0x7f020107; + /** + * Tint to apply to the thumb drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbTint=0x7f020108; + /** + * Blending mode used to apply the thumb tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int thumbTintMode=0x7f020109; + /** + * Drawable displayed at each progress position on a seekbar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tickMark=0x7f02010a; + /** + * Tint to apply to the tick mark drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickMarkTint=0x7f02010b; + /** + * Blending mode used to apply the tick mark tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tickMarkTintMode=0x7f02010c; + /** + * Tint to apply to the image source. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tint=0x7f02010d; + /** + * Blending mode used to apply the image source tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tintMode=0x7f02010e; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int title=0x7f02010f; + /** + * Specifies extra space on the left, start, right and end sides + * of the toolbar's title. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargin=0x7f020110; + /** + * Specifies extra space on the bottom side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginBottom=0x7f020111; + /** + * Specifies extra space on the end side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginEnd=0x7f020112; + /** + * Specifies extra space on the start side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginStart=0x7f020113; + /** + * Specifies extra space on the top side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginTop=0x7f020114; + /** + * {@deprecated Use titleMargin} + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + @Deprecated + public static final int titleMargins=0x7f020115; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextAppearance=0x7f020116; + /** + * A color to apply to the title string. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int titleTextColor=0x7f020117; + /** + * Specifies a style to use for title text. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextStyle=0x7f020118; + /** + * Default Toolar NavigationButtonStyle + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarNavigationButtonStyle=0x7f020119; + /** + * Default Toolbar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarStyle=0x7f02011a; + /** + * Foreground color to use for tooltips + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f02011b; + /** + * Background to use for tooltips + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tooltipFrameBackground=0x7f02011c; + /** + * The tooltip text associated with the item. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int tooltipText=0x7f02011d; + /** + * Drawable to use as the "track" that the switch thumb slides within. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int track=0x7f02011e; + /** + * Tint to apply to the track. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackTint=0x7f02011f; + /** + * Blending mode used to apply the track tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int trackTintMode=0x7f020120; + /** + * The index of the font in the tcc font file. If the font file referenced is not in the + * tcc format, this attribute needs not be specified. + *

May be an integer value, such as "100". + */ + public static final int ttcIndex=0x7f020121; + /** + * Aspect ratio (width / height) of the view, not necessarily of the images. + *

May be a floating point value, such as "1.2". + */ + public static final int viewAspectRatio=0x7f020122; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int viewInflaterClass=0x7f020123; + /** + * Voice button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int voiceIcon=0x7f020124; + /** + * Flag indicating whether this window should have an Action Bar + * in place of the usual title bar. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBar=0x7f020125; + /** + * Flag indicating whether this window's Action Bar should overlay + * application content. Does nothing if the window would not + * have an Action Bar. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBarOverlay=0x7f020126; + /** + * Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar). + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionModeOverlay=0x7f020127; + /** + * A fixed height for the window along the major axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMajor=0x7f020128; + /** + * A fixed height for the window along the minor axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMinor=0x7f020129; + /** + * A fixed width for the window along the major axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMajor=0x7f02012a; + /** + * A fixed width for the window along the minor axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMinor=0x7f02012b; + /** + * The minimum width the window is allowed to be, along the major + * axis of the screen. That is, when in landscape. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMajor=0x7f02012c; + /** + * The minimum width the window is allowed to be, along the minor + * axis of the screen. That is, when in portrait. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMinor=0x7f02012d; + /** + * Flag indicating whether there should be no title on this window. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowNoTitle=0x7f02012e; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f030000; + public static final int abc_allow_stacked_button_bar=0x7f030001; + public static final int abc_config_actionMenuItemAllCaps=0x7f030002; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; + public static final int abc_background_cache_hint_selector_material_light=0x7f040001; + public static final int abc_btn_colored_borderless_text_material=0x7f040002; + public static final int abc_btn_colored_text_material=0x7f040003; + public static final int abc_color_highlight_material=0x7f040004; + public static final int abc_hint_foreground_material_dark=0x7f040005; + public static final int abc_hint_foreground_material_light=0x7f040006; + public static final int abc_input_method_navigation_guard=0x7f040007; + public static final int abc_primary_text_disable_only_material_dark=0x7f040008; + public static final int abc_primary_text_disable_only_material_light=0x7f040009; + public static final int abc_primary_text_material_dark=0x7f04000a; + public static final int abc_primary_text_material_light=0x7f04000b; + public static final int abc_search_url_text=0x7f04000c; + public static final int abc_search_url_text_normal=0x7f04000d; + public static final int abc_search_url_text_pressed=0x7f04000e; + public static final int abc_search_url_text_selected=0x7f04000f; + public static final int abc_secondary_text_material_dark=0x7f040010; + public static final int abc_secondary_text_material_light=0x7f040011; + public static final int abc_tint_btn_checkable=0x7f040012; + public static final int abc_tint_default=0x7f040013; + public static final int abc_tint_edittext=0x7f040014; + public static final int abc_tint_seek_thumb=0x7f040015; + public static final int abc_tint_spinner=0x7f040016; + public static final int abc_tint_switch_track=0x7f040017; + public static final int accent_material_dark=0x7f040018; + public static final int accent_material_light=0x7f040019; + public static final int background_floating_material_dark=0x7f04001a; + public static final int background_floating_material_light=0x7f04001b; + public static final int background_material_dark=0x7f04001c; + public static final int background_material_light=0x7f04001d; + public static final int bright_foreground_disabled_material_dark=0x7f04001e; + public static final int bright_foreground_disabled_material_light=0x7f04001f; + public static final int bright_foreground_inverse_material_dark=0x7f040020; + public static final int bright_foreground_inverse_material_light=0x7f040021; + public static final int bright_foreground_material_dark=0x7f040022; + public static final int bright_foreground_material_light=0x7f040023; + public static final int button_material_dark=0x7f040024; + public static final int button_material_light=0x7f040025; + public static final int catalyst_redbox_background=0x7f040026; + public static final int dim_foreground_disabled_material_dark=0x7f040027; + public static final int dim_foreground_disabled_material_light=0x7f040028; + public static final int dim_foreground_material_dark=0x7f040029; + public static final int dim_foreground_material_light=0x7f04002a; + public static final int error_color_material_dark=0x7f04002b; + public static final int error_color_material_light=0x7f04002c; + public static final int foreground_material_dark=0x7f04002d; + public static final int foreground_material_light=0x7f04002e; + public static final int highlighted_text_material_dark=0x7f04002f; + public static final int highlighted_text_material_light=0x7f040030; + public static final int material_blue_grey_800=0x7f040031; + public static final int material_blue_grey_900=0x7f040032; + public static final int material_blue_grey_950=0x7f040033; + public static final int material_deep_teal_200=0x7f040034; + public static final int material_deep_teal_500=0x7f040035; + public static final int material_grey_100=0x7f040036; + public static final int material_grey_300=0x7f040037; + public static final int material_grey_50=0x7f040038; + public static final int material_grey_600=0x7f040039; + public static final int material_grey_800=0x7f04003a; + public static final int material_grey_850=0x7f04003b; + public static final int material_grey_900=0x7f04003c; + public static final int notification_action_color_filter=0x7f04003d; + public static final int notification_icon_bg_color=0x7f04003e; + public static final int primary_dark_material_dark=0x7f04003f; + public static final int primary_dark_material_light=0x7f040040; + public static final int primary_material_dark=0x7f040041; + public static final int primary_material_light=0x7f040042; + public static final int primary_text_default_material_dark=0x7f040043; + public static final int primary_text_default_material_light=0x7f040044; + public static final int primary_text_disabled_material_dark=0x7f040045; + public static final int primary_text_disabled_material_light=0x7f040046; + public static final int ripple_material_dark=0x7f040047; + public static final int ripple_material_light=0x7f040048; + public static final int secondary_text_default_material_dark=0x7f040049; + public static final int secondary_text_default_material_light=0x7f04004a; + public static final int secondary_text_disabled_material_dark=0x7f04004b; + public static final int secondary_text_disabled_material_light=0x7f04004c; + public static final int switch_thumb_disabled_material_dark=0x7f04004d; + public static final int switch_thumb_disabled_material_light=0x7f04004e; + public static final int switch_thumb_material_dark=0x7f04004f; + public static final int switch_thumb_material_light=0x7f040050; + public static final int switch_thumb_normal_material_dark=0x7f040051; + public static final int switch_thumb_normal_material_light=0x7f040052; + public static final int tooltip_background_dark=0x7f040053; + public static final int tooltip_background_light=0x7f040054; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f050000; + public static final int abc_action_bar_content_inset_with_nav=0x7f050001; + public static final int abc_action_bar_default_height_material=0x7f050002; + public static final int abc_action_bar_default_padding_end_material=0x7f050003; + public static final int abc_action_bar_default_padding_start_material=0x7f050004; + public static final int abc_action_bar_elevation_material=0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; + public static final int abc_action_bar_stacked_max_height=0x7f050009; + public static final int abc_action_bar_stacked_tab_max_width=0x7f05000a; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000b; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000c; + public static final int abc_action_button_min_height_material=0x7f05000d; + public static final int abc_action_button_min_width_material=0x7f05000e; + public static final int abc_action_button_min_width_overflow_material=0x7f05000f; + public static final int abc_alert_dialog_button_bar_height=0x7f050010; + public static final int abc_alert_dialog_button_dimen=0x7f050011; + public static final int abc_button_inset_horizontal_material=0x7f050012; + public static final int abc_button_inset_vertical_material=0x7f050013; + public static final int abc_button_padding_horizontal_material=0x7f050014; + public static final int abc_button_padding_vertical_material=0x7f050015; + public static final int abc_cascading_menus_min_smallest_width=0x7f050016; + public static final int abc_config_prefDialogWidth=0x7f050017; + public static final int abc_control_corner_material=0x7f050018; + public static final int abc_control_inset_material=0x7f050019; + public static final int abc_control_padding_material=0x7f05001a; + public static final int abc_dialog_corner_radius_material=0x7f05001b; + public static final int abc_dialog_fixed_height_major=0x7f05001c; + public static final int abc_dialog_fixed_height_minor=0x7f05001d; + public static final int abc_dialog_fixed_width_major=0x7f05001e; + public static final int abc_dialog_fixed_width_minor=0x7f05001f; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f050020; + public static final int abc_dialog_list_padding_top_no_title=0x7f050021; + public static final int abc_dialog_min_width_major=0x7f050022; + public static final int abc_dialog_min_width_minor=0x7f050023; + public static final int abc_dialog_padding_material=0x7f050024; + public static final int abc_dialog_padding_top_material=0x7f050025; + public static final int abc_dialog_title_divider_material=0x7f050026; + public static final int abc_disabled_alpha_material_dark=0x7f050027; + public static final int abc_disabled_alpha_material_light=0x7f050028; + public static final int abc_dropdownitem_icon_width=0x7f050029; + public static final int abc_dropdownitem_text_padding_left=0x7f05002a; + public static final int abc_dropdownitem_text_padding_right=0x7f05002b; + public static final int abc_edit_text_inset_bottom_material=0x7f05002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f05002d; + public static final int abc_edit_text_inset_top_material=0x7f05002e; + public static final int abc_floating_window_z=0x7f05002f; + public static final int abc_list_item_padding_horizontal_material=0x7f050030; + public static final int abc_panel_menu_list_width=0x7f050031; + public static final int abc_progress_bar_height_material=0x7f050032; + public static final int abc_search_view_preferred_height=0x7f050033; + public static final int abc_search_view_preferred_width=0x7f050034; + public static final int abc_seekbar_track_background_height_material=0x7f050035; + public static final int abc_seekbar_track_progress_height_material=0x7f050036; + public static final int abc_select_dialog_padding_start_material=0x7f050037; + public static final int abc_switch_padding=0x7f050038; + public static final int abc_text_size_body_1_material=0x7f050039; + public static final int abc_text_size_body_2_material=0x7f05003a; + public static final int abc_text_size_button_material=0x7f05003b; + public static final int abc_text_size_caption_material=0x7f05003c; + public static final int abc_text_size_display_1_material=0x7f05003d; + public static final int abc_text_size_display_2_material=0x7f05003e; + public static final int abc_text_size_display_3_material=0x7f05003f; + public static final int abc_text_size_display_4_material=0x7f050040; + public static final int abc_text_size_headline_material=0x7f050041; + public static final int abc_text_size_large_material=0x7f050042; + public static final int abc_text_size_medium_material=0x7f050043; + public static final int abc_text_size_menu_header_material=0x7f050044; + public static final int abc_text_size_menu_material=0x7f050045; + public static final int abc_text_size_small_material=0x7f050046; + public static final int abc_text_size_subhead_material=0x7f050047; + public static final int abc_text_size_subtitle_material_toolbar=0x7f050048; + public static final int abc_text_size_title_material=0x7f050049; + public static final int abc_text_size_title_material_toolbar=0x7f05004a; + public static final int compat_button_inset_horizontal_material=0x7f05004b; + public static final int compat_button_inset_vertical_material=0x7f05004c; + public static final int compat_button_padding_horizontal_material=0x7f05004d; + public static final int compat_button_padding_vertical_material=0x7f05004e; + public static final int compat_control_corner_material=0x7f05004f; + public static final int compat_notification_large_icon_max_height=0x7f050050; + public static final int compat_notification_large_icon_max_width=0x7f050051; + public static final int disabled_alpha_material_dark=0x7f050052; + public static final int disabled_alpha_material_light=0x7f050053; + public static final int highlight_alpha_material_colored=0x7f050054; + public static final int highlight_alpha_material_dark=0x7f050055; + public static final int highlight_alpha_material_light=0x7f050056; + public static final int hint_alpha_material_dark=0x7f050057; + public static final int hint_alpha_material_light=0x7f050058; + public static final int hint_pressed_alpha_material_dark=0x7f050059; + public static final int hint_pressed_alpha_material_light=0x7f05005a; + public static final int notification_action_icon_size=0x7f05005b; + public static final int notification_action_text_size=0x7f05005c; + public static final int notification_big_circle_margin=0x7f05005d; + public static final int notification_content_margin_start=0x7f05005e; + public static final int notification_large_icon_height=0x7f05005f; + public static final int notification_large_icon_width=0x7f050060; + public static final int notification_main_column_padding_top=0x7f050061; + public static final int notification_media_narrow_margin=0x7f050062; + public static final int notification_right_icon_size=0x7f050063; + public static final int notification_right_side_padding_top=0x7f050064; + public static final int notification_small_icon_background_padding=0x7f050065; + public static final int notification_small_icon_size_as_large=0x7f050066; + public static final int notification_subtext_size=0x7f050067; + public static final int notification_top_pad=0x7f050068; + public static final int notification_top_pad_large_text=0x7f050069; + public static final int tooltip_corner_radius=0x7f05006a; + public static final int tooltip_horizontal_padding=0x7f05006b; + public static final int tooltip_margin=0x7f05006c; + public static final int tooltip_precise_anchor_extra_offset=0x7f05006d; + public static final int tooltip_precise_anchor_threshold=0x7f05006e; + public static final int tooltip_vertical_padding=0x7f05006f; + public static final int tooltip_y_offset_non_touch=0x7f050070; + public static final int tooltip_y_offset_touch=0x7f050071; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; + public static final int abc_action_bar_item_background_material=0x7f060001; + public static final int abc_btn_borderless_material=0x7f060002; + public static final int abc_btn_check_material=0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; + public static final int abc_btn_colored_material=0x7f060006; + public static final int abc_btn_default_mtrl_shape=0x7f060007; + public static final int abc_btn_radio_material=0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; + public static final int abc_cab_background_internal_bg=0x7f06000d; + public static final int abc_cab_background_top_material=0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; + public static final int abc_control_background_material=0x7f060010; + public static final int abc_dialog_material_background=0x7f060011; + public static final int abc_edit_text_material=0x7f060012; + public static final int abc_ic_ab_back_material=0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; + public static final int abc_ic_clear_material=0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; + public static final int abc_ic_go_search_api_material=0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; + public static final int abc_ic_menu_overflow_material=0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; + public static final int abc_ic_search_api_material=0x7f06001e; + public static final int abc_ic_star_black_16dp=0x7f06001f; + public static final int abc_ic_star_black_36dp=0x7f060020; + public static final int abc_ic_star_black_48dp=0x7f060021; + public static final int abc_ic_star_half_black_16dp=0x7f060022; + public static final int abc_ic_star_half_black_36dp=0x7f060023; + public static final int abc_ic_star_half_black_48dp=0x7f060024; + public static final int abc_ic_voice_search_api_material=0x7f060025; + public static final int abc_item_background_holo_dark=0x7f060026; + public static final int abc_item_background_holo_light=0x7f060027; + public static final int abc_list_divider_material=0x7f060028; + public static final int abc_list_divider_mtrl_alpha=0x7f060029; + public static final int abc_list_focused_holo=0x7f06002a; + public static final int abc_list_longpressed_holo=0x7f06002b; + public static final int abc_list_pressed_holo_dark=0x7f06002c; + public static final int abc_list_pressed_holo_light=0x7f06002d; + public static final int abc_list_selector_background_transition_holo_dark=0x7f06002e; + public static final int abc_list_selector_background_transition_holo_light=0x7f06002f; + public static final int abc_list_selector_disabled_holo_dark=0x7f060030; + public static final int abc_list_selector_disabled_holo_light=0x7f060031; + public static final int abc_list_selector_holo_dark=0x7f060032; + public static final int abc_list_selector_holo_light=0x7f060033; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060034; + public static final int abc_popup_background_mtrl_mult=0x7f060035; + public static final int abc_ratingbar_indicator_material=0x7f060036; + public static final int abc_ratingbar_material=0x7f060037; + public static final int abc_ratingbar_small_material=0x7f060038; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f06003a; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003b; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003c; + public static final int abc_scrubber_track_mtrl_alpha=0x7f06003d; + public static final int abc_seekbar_thumb_material=0x7f06003e; + public static final int abc_seekbar_tick_mark_material=0x7f06003f; + public static final int abc_seekbar_track_material=0x7f060040; + public static final int abc_spinner_mtrl_am_alpha=0x7f060041; + public static final int abc_spinner_textfield_background_material=0x7f060042; + public static final int abc_switch_thumb_material=0x7f060043; + public static final int abc_switch_track_mtrl_alpha=0x7f060044; + public static final int abc_tab_indicator_material=0x7f060045; + public static final int abc_tab_indicator_mtrl_alpha=0x7f060046; + public static final int abc_text_cursor_material=0x7f060047; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f060048; + public static final int abc_text_select_handle_left_mtrl_light=0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f06004a; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004c; + public static final int abc_text_select_handle_right_mtrl_light=0x7f06004d; + public static final int abc_textfield_activated_mtrl_alpha=0x7f06004e; + public static final int abc_textfield_default_mtrl_alpha=0x7f06004f; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f060050; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f060051; + public static final int abc_textfield_search_material=0x7f060052; + public static final int abc_vector_test=0x7f060053; + public static final int notification_action_background=0x7f060054; + public static final int notification_bg=0x7f060055; + public static final int notification_bg_low=0x7f060056; + public static final int notification_bg_low_normal=0x7f060057; + public static final int notification_bg_low_pressed=0x7f060058; + public static final int notification_bg_normal=0x7f060059; + public static final int notification_bg_normal_pressed=0x7f06005a; + public static final int notification_icon_background=0x7f06005b; + public static final int notification_template_icon_bg=0x7f06005c; + public static final int notification_template_icon_low_bg=0x7f06005d; + public static final int notification_tile_bg=0x7f06005e; + public static final int notify_panel_notification_icon_bg=0x7f06005f; + public static final int redbox_top_border_background=0x7f060060; + public static final int tooltip_frame_dark=0x7f060061; + public static final int tooltip_frame_light=0x7f060062; + } + public static final class id { + public static final int ALT=0x7f070000; + public static final int CTRL=0x7f070001; + public static final int FUNCTION=0x7f070002; + public static final int META=0x7f070003; + public static final int SHIFT=0x7f070004; + public static final int SYM=0x7f070005; + public static final int accessibility_actions=0x7f070006; + public static final int accessibility_hint=0x7f070007; + public static final int accessibility_label=0x7f070008; + public static final int accessibility_role=0x7f070009; + public static final int accessibility_state=0x7f07000a; + public static final int accessibility_states=0x7f07000b; + public static final int action_bar=0x7f07000c; + public static final int action_bar_activity_content=0x7f07000d; + public static final int action_bar_container=0x7f07000e; + public static final int action_bar_root=0x7f07000f; + public static final int action_bar_spinner=0x7f070010; + public static final int action_bar_subtitle=0x7f070011; + public static final int action_bar_title=0x7f070012; + public static final int action_container=0x7f070013; + public static final int action_context_bar=0x7f070014; + public static final int action_divider=0x7f070015; + public static final int action_image=0x7f070016; + public static final int action_menu_divider=0x7f070017; + public static final int action_menu_presenter=0x7f070018; + public static final int action_mode_bar=0x7f070019; + public static final int action_mode_bar_stub=0x7f07001a; + public static final int action_mode_close_button=0x7f07001b; + public static final int action_text=0x7f07001c; + public static final int actions=0x7f07001d; + public static final int activity_chooser_view_content=0x7f07001e; + public static final int add=0x7f07001f; + public static final int alertTitle=0x7f070020; + public static final int all=0x7f070021; + public static final int always=0x7f070022; + public static final int async=0x7f070023; + public static final int beginning=0x7f070024; + public static final int blocking=0x7f070025; + public static final int bottom=0x7f070026; + public static final int buttonPanel=0x7f070027; + public static final int catalyst_redbox_title=0x7f070028; + public static final int center=0x7f070029; + public static final int centerCrop=0x7f07002a; + public static final int centerInside=0x7f07002b; + public static final int center_horizontal=0x7f07002c; + public static final int center_vertical=0x7f07002d; + public static final int checkbox=0x7f07002e; + public static final int chronometer=0x7f07002f; + public static final int clip_horizontal=0x7f070030; + public static final int clip_vertical=0x7f070031; + public static final int collapseActionView=0x7f070032; + public static final int content=0x7f070033; + public static final int contentPanel=0x7f070034; + public static final int custom=0x7f070035; + public static final int customPanel=0x7f070036; + public static final int decor_content_parent=0x7f070037; + public static final int default_activity_button=0x7f070038; + public static final int disableHome=0x7f070039; + public static final int edit_query=0x7f07003a; + public static final int end=0x7f07003b; + public static final int expand_activities_button=0x7f07003c; + public static final int expanded_menu=0x7f07003d; + public static final int fill=0x7f07003e; + public static final int fill_horizontal=0x7f07003f; + public static final int fill_vertical=0x7f070040; + public static final int fitBottomStart=0x7f070041; + public static final int fitCenter=0x7f070042; + public static final int fitEnd=0x7f070043; + public static final int fitStart=0x7f070044; + public static final int fitXY=0x7f070045; + public static final int focusCrop=0x7f070046; + public static final int forever=0x7f070047; + public static final int fps_text=0x7f070048; + public static final int group_divider=0x7f070049; + public static final int home=0x7f07004a; + public static final int homeAsUp=0x7f07004b; + public static final int icon=0x7f07004c; + public static final int icon_group=0x7f07004d; + public static final int ifRoom=0x7f07004e; + public static final int image=0x7f07004f; + public static final int info=0x7f070050; + public static final int italic=0x7f070051; + public static final int left=0x7f070052; + public static final int line1=0x7f070053; + public static final int line3=0x7f070054; + public static final int listMode=0x7f070055; + public static final int list_item=0x7f070056; + public static final int message=0x7f070057; + public static final int middle=0x7f070058; + public static final int multiply=0x7f070059; + public static final int never=0x7f07005a; + public static final int none=0x7f07005b; + public static final int normal=0x7f07005c; + public static final int notification_background=0x7f07005d; + public static final int notification_main_column=0x7f07005e; + public static final int notification_main_column_container=0x7f07005f; + public static final int parentPanel=0x7f070060; + public static final int progress_circular=0x7f070061; + public static final int progress_horizontal=0x7f070062; + public static final int radio=0x7f070063; + public static final int react_test_id=0x7f070064; + public static final int right=0x7f070065; + public static final int right_icon=0x7f070066; + public static final int right_side=0x7f070067; + public static final int rn_frame_file=0x7f070068; + public static final int rn_frame_method=0x7f070069; + public static final int rn_redbox_dismiss_button=0x7f07006a; + public static final int rn_redbox_line_separator=0x7f07006b; + public static final int rn_redbox_loading_indicator=0x7f07006c; + public static final int rn_redbox_reload_button=0x7f07006d; + public static final int rn_redbox_report_button=0x7f07006e; + public static final int rn_redbox_report_label=0x7f07006f; + public static final int rn_redbox_stack=0x7f070070; + public static final int screen=0x7f070071; + public static final int scrollIndicatorDown=0x7f070072; + public static final int scrollIndicatorUp=0x7f070073; + public static final int scrollView=0x7f070074; + public static final int search_badge=0x7f070075; + public static final int search_bar=0x7f070076; + public static final int search_button=0x7f070077; + public static final int search_close_btn=0x7f070078; + public static final int search_edit_frame=0x7f070079; + public static final int search_go_btn=0x7f07007a; + public static final int search_mag_icon=0x7f07007b; + public static final int search_plate=0x7f07007c; + public static final int search_src_text=0x7f07007d; + public static final int search_voice_btn=0x7f07007e; + public static final int select_dialog_listview=0x7f07007f; + public static final int shortcut=0x7f070080; + public static final int showCustom=0x7f070081; + public static final int showHome=0x7f070082; + public static final int showTitle=0x7f070083; + public static final int spacer=0x7f070084; + public static final int split_action_bar=0x7f070085; + public static final int src_atop=0x7f070086; + public static final int src_in=0x7f070087; + public static final int src_over=0x7f070088; + public static final int start=0x7f070089; + public static final int submenuarrow=0x7f07008a; + public static final int submit_area=0x7f07008b; + public static final int tabMode=0x7f07008c; + public static final int tag_transition_group=0x7f07008d; + public static final int tag_unhandled_key_event_manager=0x7f07008e; + public static final int tag_unhandled_key_listeners=0x7f07008f; + public static final int text=0x7f070090; + public static final int text2=0x7f070091; + public static final int textSpacerNoButtons=0x7f070092; + public static final int textSpacerNoTitle=0x7f070093; + public static final int time=0x7f070094; + public static final int title=0x7f070095; + public static final int titleDividerNoCustom=0x7f070096; + public static final int title_template=0x7f070097; + public static final int top=0x7f070098; + public static final int topPanel=0x7f070099; + public static final int uniform=0x7f07009a; + public static final int up=0x7f07009b; + public static final int useLogo=0x7f07009c; + public static final int view_tag_instance_handle=0x7f07009d; + public static final int view_tag_native_id=0x7f07009e; + public static final int withText=0x7f07009f; + public static final int wrap_content=0x7f0700a0; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f080000; + public static final int abc_config_activityShortDur=0x7f080001; + public static final int cancel_button_image_alpha=0x7f080002; + public static final int config_tooltipAnimTime=0x7f080003; + public static final int react_native_dev_server_port=0x7f080004; + public static final int react_native_inspector_proxy_port=0x7f080005; + public static final int status_bar_notification_info_maxnum=0x7f080006; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f090000; + public static final int abc_action_bar_up_container=0x7f090001; + public static final int abc_action_menu_item_layout=0x7f090002; + public static final int abc_action_menu_layout=0x7f090003; + public static final int abc_action_mode_bar=0x7f090004; + public static final int abc_action_mode_close_item_material=0x7f090005; + public static final int abc_activity_chooser_view=0x7f090006; + public static final int abc_activity_chooser_view_list_item=0x7f090007; + public static final int abc_alert_dialog_button_bar_material=0x7f090008; + public static final int abc_alert_dialog_material=0x7f090009; + public static final int abc_alert_dialog_title_material=0x7f09000a; + public static final int abc_cascading_menu_item_layout=0x7f09000b; + public static final int abc_dialog_title_material=0x7f09000c; + public static final int abc_expanded_menu_layout=0x7f09000d; + public static final int abc_list_menu_item_checkbox=0x7f09000e; + public static final int abc_list_menu_item_icon=0x7f09000f; + public static final int abc_list_menu_item_layout=0x7f090010; + public static final int abc_list_menu_item_radio=0x7f090011; + public static final int abc_popup_menu_header_item_layout=0x7f090012; + public static final int abc_popup_menu_item_layout=0x7f090013; + public static final int abc_screen_content_include=0x7f090014; + public static final int abc_screen_simple=0x7f090015; + public static final int abc_screen_simple_overlay_action_mode=0x7f090016; + public static final int abc_screen_toolbar=0x7f090017; + public static final int abc_search_dropdown_item_icons_2line=0x7f090018; + public static final int abc_search_view=0x7f090019; + public static final int abc_select_dialog_material=0x7f09001a; + public static final int abc_tooltip=0x7f09001b; + public static final int dev_loading_view=0x7f09001c; + public static final int fps_view=0x7f09001d; + public static final int notification_action=0x7f09001e; + public static final int notification_action_tombstone=0x7f09001f; + public static final int notification_template_custom_big=0x7f090020; + public static final int notification_template_icon_group=0x7f090021; + public static final int notification_template_part_chronometer=0x7f090022; + public static final int notification_template_part_time=0x7f090023; + public static final int redbox_item_frame=0x7f090024; + public static final int redbox_item_title=0x7f090025; + public static final int redbox_view=0x7f090026; + public static final int select_dialog_item_material=0x7f090027; + public static final int select_dialog_multichoice_material=0x7f090028; + public static final int select_dialog_singlechoice_material=0x7f090029; + public static final int support_simple_spinner_dropdown_item=0x7f09002a; + } + public static final class mipmap { + public static final int ic_launcher=0x7f0a0000; + public static final int ic_launcher_round=0x7f0a0001; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0000; + public static final int abc_action_bar_up_description=0x7f0b0001; + public static final int abc_action_menu_overflow_description=0x7f0b0002; + public static final int abc_action_mode_done=0x7f0b0003; + public static final int abc_activity_chooser_view_see_all=0x7f0b0004; + public static final int abc_activitychooserview_choose_application=0x7f0b0005; + public static final int abc_capital_off=0x7f0b0006; + public static final int abc_capital_on=0x7f0b0007; + public static final int abc_font_family_body_1_material=0x7f0b0008; + public static final int abc_font_family_body_2_material=0x7f0b0009; + public static final int abc_font_family_button_material=0x7f0b000a; + public static final int abc_font_family_caption_material=0x7f0b000b; + public static final int abc_font_family_display_1_material=0x7f0b000c; + public static final int abc_font_family_display_2_material=0x7f0b000d; + public static final int abc_font_family_display_3_material=0x7f0b000e; + public static final int abc_font_family_display_4_material=0x7f0b000f; + public static final int abc_font_family_headline_material=0x7f0b0010; + public static final int abc_font_family_menu_material=0x7f0b0011; + public static final int abc_font_family_subhead_material=0x7f0b0012; + public static final int abc_font_family_title_material=0x7f0b0013; + public static final int abc_menu_alt_shortcut_label=0x7f0b0014; + public static final int abc_menu_ctrl_shortcut_label=0x7f0b0015; + public static final int abc_menu_delete_shortcut_label=0x7f0b0016; + public static final int abc_menu_enter_shortcut_label=0x7f0b0017; + public static final int abc_menu_function_shortcut_label=0x7f0b0018; + public static final int abc_menu_meta_shortcut_label=0x7f0b0019; + public static final int abc_menu_shift_shortcut_label=0x7f0b001a; + public static final int abc_menu_space_shortcut_label=0x7f0b001b; + public static final int abc_menu_sym_shortcut_label=0x7f0b001c; + public static final int abc_prepend_shortcut_label=0x7f0b001d; + public static final int abc_search_hint=0x7f0b001e; + public static final int abc_searchview_description_clear=0x7f0b001f; + public static final int abc_searchview_description_query=0x7f0b0020; + public static final int abc_searchview_description_search=0x7f0b0021; + public static final int abc_searchview_description_submit=0x7f0b0022; + public static final int abc_searchview_description_voice=0x7f0b0023; + public static final int abc_shareactionprovider_share_with=0x7f0b0024; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0025; + public static final int abc_toolbar_collapse_description=0x7f0b0026; + public static final int alert_description=0x7f0b0027; + public static final int app_name=0x7f0b0028; + public static final int catalyst_change_bundle_location=0x7f0b0029; + public static final int catalyst_copy_button=0x7f0b002a; + public static final int catalyst_debug=0x7f0b002b; + public static final int catalyst_debug_chrome=0x7f0b002c; + public static final int catalyst_debug_chrome_stop=0x7f0b002d; + public static final int catalyst_debug_connecting=0x7f0b002e; + public static final int catalyst_debug_error=0x7f0b002f; + public static final int catalyst_debug_nuclide=0x7f0b0030; + public static final int catalyst_debug_nuclide_error=0x7f0b0031; + public static final int catalyst_debug_stop=0x7f0b0032; + public static final int catalyst_dismiss_button=0x7f0b0033; + public static final int catalyst_heap_capture=0x7f0b0034; + public static final int catalyst_hot_reloading=0x7f0b0035; + public static final int catalyst_hot_reloading_auto_disable=0x7f0b0036; + public static final int catalyst_hot_reloading_auto_enable=0x7f0b0037; + public static final int catalyst_hot_reloading_stop=0x7f0b0038; + public static final int catalyst_inspector=0x7f0b0039; + public static final int catalyst_loading_from_url=0x7f0b003a; + public static final int catalyst_perf_monitor=0x7f0b003b; + public static final int catalyst_perf_monitor_stop=0x7f0b003c; + public static final int catalyst_reload=0x7f0b003d; + public static final int catalyst_reload_button=0x7f0b003e; + public static final int catalyst_reload_error=0x7f0b003f; + public static final int catalyst_report_button=0x7f0b0040; + public static final int catalyst_sample_profiler_disable=0x7f0b0041; + public static final int catalyst_sample_profiler_enable=0x7f0b0042; + public static final int catalyst_settings=0x7f0b0043; + public static final int catalyst_settings_title=0x7f0b0044; + public static final int combobox_description=0x7f0b0045; + public static final int header_description=0x7f0b0046; + public static final int image_description=0x7f0b0047; + public static final int imagebutton_description=0x7f0b0048; + public static final int link_description=0x7f0b0049; + public static final int menu_description=0x7f0b004a; + public static final int menubar_description=0x7f0b004b; + public static final int menuitem_description=0x7f0b004c; + public static final int progressbar_description=0x7f0b004d; + public static final int radiogroup_description=0x7f0b004e; + public static final int rn_tab_description=0x7f0b004f; + public static final int scrollbar_description=0x7f0b0050; + public static final int search_description=0x7f0b0051; + public static final int search_menu_title=0x7f0b0052; + public static final int spinbutton_description=0x7f0b0053; + public static final int state_busy_description=0x7f0b0054; + public static final int state_collapsed_description=0x7f0b0055; + public static final int state_expanded_description=0x7f0b0056; + public static final int state_mixed_description=0x7f0b0057; + public static final int state_off_description=0x7f0b0058; + public static final int state_on_description=0x7f0b0059; + public static final int status_bar_notification_info_overflow=0x7f0b005a; + public static final int summary_description=0x7f0b005b; + public static final int tablist_description=0x7f0b005c; + public static final int timer_description=0x7f0b005d; + public static final int toolbar_description=0x7f0b005e; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0c0000; + public static final int AlertDialog_AppCompat_Light=0x7f0c0001; + public static final int Animation_AppCompat_Dialog=0x7f0c0002; + public static final int Animation_AppCompat_DropDownUp=0x7f0c0003; + public static final int Animation_AppCompat_Tooltip=0x7f0c0004; + public static final int Animation_Catalyst_RedBox=0x7f0c0005; + public static final int AppTheme=0x7f0c0006; + public static final int Base_AlertDialog_AppCompat=0x7f0c0007; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0c0008; + public static final int Base_Animation_AppCompat_Dialog=0x7f0c0009; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c000a; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0c000b; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0c000c; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c000d; + public static final int Base_TextAppearance_AppCompat=0x7f0c000e; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c000f; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c0010; + public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0011; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c0012; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c0013; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c0014; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c0015; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c0016; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0017; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c0018; + public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0019; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c001b; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c001c; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c001d; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001e; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c001f; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c0020; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0021; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0022; + public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0023; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c0024; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0025; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c0026; + public static final int Base_TextAppearance_AppCompat_Title=0x7f0c0027; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c0028; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0030; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0031; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0034; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0035; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0036; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0038; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0039; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c003a; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c003b; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c003c; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c003d; + public static final int Base_Theme_AppCompat=0x7f0c003e; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c003f; + public static final int Base_Theme_AppCompat_Dialog=0x7f0c0040; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0041; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c0042; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0043; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0044; + public static final int Base_Theme_AppCompat_Light=0x7f0c0045; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c0046; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0047; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0048; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c0049; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c004a; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c004b; + public static final int Base_ThemeOverlay_AppCompat=0x7f0c004c; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c004d; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c004e; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c004f; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0050; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0051; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c0052; + public static final int Base_V21_Theme_AppCompat=0x7f0c0053; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c0054; + public static final int Base_V21_Theme_AppCompat_Light=0x7f0c0055; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c0056; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c0057; + public static final int Base_V22_Theme_AppCompat=0x7f0c0058; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0c0059; + public static final int Base_V23_Theme_AppCompat=0x7f0c005a; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0c005b; + public static final int Base_V26_Theme_AppCompat=0x7f0c005c; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0c005d; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c005e; + public static final int Base_V28_Theme_AppCompat=0x7f0c005f; + public static final int Base_V28_Theme_AppCompat_Light=0x7f0c0060; + public static final int Base_V7_Theme_AppCompat=0x7f0c0061; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c0062; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0c0063; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c0064; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c0065; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c0066; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c0067; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c0068; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0c0069; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c006a; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c006b; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c006c; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c006d; + public static final int Base_Widget_AppCompat_ActionButton=0x7f0c006e; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c006f; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0070; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0c0071; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c0072; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0073; + public static final int Base_Widget_AppCompat_Button=0x7f0c0074; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0075; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0076; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0077; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c0078; + public static final int Base_Widget_AppCompat_Button_Small=0x7f0c0079; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f0c007a; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c007b; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007c; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007d; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c007e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c007f; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c0080; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c0081; + public static final int Base_Widget_AppCompat_EditText=0x7f0c0082; + public static final int Base_Widget_AppCompat_ImageButton=0x7f0c0083; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c0084; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0085; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0086; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0087; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0088; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0089; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c008a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c008b; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c008c; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c008d; + public static final int Base_Widget_AppCompat_ListView=0x7f0c008e; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c008f; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c0090; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0091; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0092; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c0093; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c0094; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0095; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0096; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c0097; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c0098; + public static final int Base_Widget_AppCompat_SearchView=0x7f0c0099; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c009a; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0c009b; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c009c; + public static final int Base_Widget_AppCompat_Spinner=0x7f0c009d; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c009e; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c009f; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0c00a0; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c00a1; + public static final int CalendarDatePickerDialog=0x7f0c00a2; + public static final int CalendarDatePickerStyle=0x7f0c00a3; + public static final int ClockTimePickerDialog=0x7f0c00a4; + public static final int ClockTimePickerStyle=0x7f0c00a5; + public static final int DialogAnimationFade=0x7f0c00a6; + public static final int DialogAnimationSlide=0x7f0c00a7; + public static final int Platform_AppCompat=0x7f0c00a8; + public static final int Platform_AppCompat_Light=0x7f0c00a9; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0c00aa; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c00ab; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c00ac; + public static final int Platform_V21_AppCompat=0x7f0c00ad; + public static final int Platform_V21_AppCompat_Light=0x7f0c00ae; + public static final int Platform_V25_AppCompat=0x7f0c00af; + public static final int Platform_V25_AppCompat_Light=0x7f0c00b0; + public static final int Platform_Widget_AppCompat_Spinner=0x7f0c00b1; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c00b2; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c00b3; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c00b4; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c00b5; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c00b6; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0c00b7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0c00b8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c00b9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0c00ba; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c00bb; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c00bc; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c00bd; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c00be; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c00bf; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c00c0; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c00c1; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c00c2; + public static final int SpinnerDatePickerDialog=0x7f0c00c3; + public static final int SpinnerDatePickerStyle=0x7f0c00c4; + public static final int SpinnerTimePickerDialog=0x7f0c00c5; + public static final int SpinnerTimePickerStyle=0x7f0c00c6; + public static final int TextAppearance_AppCompat=0x7f0c00c7; + public static final int TextAppearance_AppCompat_Body1=0x7f0c00c8; + public static final int TextAppearance_AppCompat_Body2=0x7f0c00c9; + public static final int TextAppearance_AppCompat_Button=0x7f0c00ca; + public static final int TextAppearance_AppCompat_Caption=0x7f0c00cb; + public static final int TextAppearance_AppCompat_Display1=0x7f0c00cc; + public static final int TextAppearance_AppCompat_Display2=0x7f0c00cd; + public static final int TextAppearance_AppCompat_Display3=0x7f0c00ce; + public static final int TextAppearance_AppCompat_Display4=0x7f0c00cf; + public static final int TextAppearance_AppCompat_Headline=0x7f0c00d0; + public static final int TextAppearance_AppCompat_Inverse=0x7f0c00d1; + public static final int TextAppearance_AppCompat_Large=0x7f0c00d2; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00d3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00d4; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00d5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00d6; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00d7; + public static final int TextAppearance_AppCompat_Medium=0x7f0c00d8; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00d9; + public static final int TextAppearance_AppCompat_Menu=0x7f0c00da; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00db; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00dc; + public static final int TextAppearance_AppCompat_Small=0x7f0c00dd; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00de; + public static final int TextAppearance_AppCompat_Subhead=0x7f0c00df; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00e0; + public static final int TextAppearance_AppCompat_Title=0x7f0c00e1; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00e2; + public static final int TextAppearance_AppCompat_Tooltip=0x7f0c00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00e5; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00e6; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00e7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00e9; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00ea; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00eb; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00ec; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00ed; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00ee; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00ef; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00f0; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00f1; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c00f2; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c00f3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c00f4; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c00f5; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c00f6; + public static final int TextAppearance_Compat_Notification=0x7f0c00f7; + public static final int TextAppearance_Compat_Notification_Info=0x7f0c00f8; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0c00f9; + public static final int TextAppearance_Compat_Notification_Time=0x7f0c00fa; + public static final int TextAppearance_Compat_Notification_Title=0x7f0c00fb; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00fc; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c00fd; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c00fe; + public static final int Theme=0x7f0c00ff; + public static final int Theme_AppCompat=0x7f0c0100; + public static final int Theme_AppCompat_CompactMenu=0x7f0c0101; + public static final int Theme_AppCompat_DayNight=0x7f0c0102; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c0103; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c0104; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c0105; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0106; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0107; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0108; + public static final int Theme_AppCompat_Dialog=0x7f0c0109; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0c010a; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c010b; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c010c; + public static final int Theme_AppCompat_Light=0x7f0c010d; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c010e; + public static final int Theme_AppCompat_Light_Dialog=0x7f0c010f; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0110; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0111; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0112; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c0113; + public static final int Theme_AppCompat_NoActionBar=0x7f0c0114; + public static final int Theme_Catalyst=0x7f0c0115; + public static final int Theme_Catalyst_RedBox=0x7f0c0116; + public static final int Theme_FullScreenDialog=0x7f0c0117; + public static final int Theme_FullScreenDialogAnimatedFade=0x7f0c0118; + public static final int Theme_FullScreenDialogAnimatedSlide=0x7f0c0119; + public static final int Theme_ReactNative_AppCompat_Light=0x7f0c011a; + public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0c011b; + public static final int ThemeOverlay_AppCompat=0x7f0c011c; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c011d; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0c011e; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c011f; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c0120; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0121; + public static final int ThemeOverlay_AppCompat_Light=0x7f0c0122; + public static final int Widget_AppCompat_ActionBar=0x7f0c0123; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c0124; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c0125; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0126; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c0127; + public static final int Widget_AppCompat_ActionButton=0x7f0c0128; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0129; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c012a; + public static final int Widget_AppCompat_ActionMode=0x7f0c012b; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0c012c; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c012d; + public static final int Widget_AppCompat_Button=0x7f0c012e; + public static final int Widget_AppCompat_Button_Borderless=0x7f0c012f; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c0130; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0131; + public static final int Widget_AppCompat_Button_Colored=0x7f0c0132; + public static final int Widget_AppCompat_Button_Small=0x7f0c0133; + public static final int Widget_AppCompat_ButtonBar=0x7f0c0134; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c0135; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0136; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0137; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0138; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0139; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c013a; + public static final int Widget_AppCompat_EditText=0x7f0c013b; + public static final int Widget_AppCompat_ImageButton=0x7f0c013c; + public static final int Widget_AppCompat_Light_ActionBar=0x7f0c013d; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c013e; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c013f; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0140; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c0141; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0142; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0143; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0144; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c0145; + public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0146; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0147; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0148; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0149; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c014a; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c014b; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c014c; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c014d; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c014e; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c014f; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0150; + public static final int Widget_AppCompat_Light_SearchView=0x7f0c0151; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c0152; + public static final int Widget_AppCompat_ListMenuView=0x7f0c0153; + public static final int Widget_AppCompat_ListPopupWindow=0x7f0c0154; + public static final int Widget_AppCompat_ListView=0x7f0c0155; + public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0156; + public static final int Widget_AppCompat_ListView_Menu=0x7f0c0157; + public static final int Widget_AppCompat_PopupMenu=0x7f0c0158; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0159; + public static final int Widget_AppCompat_PopupWindow=0x7f0c015a; + public static final int Widget_AppCompat_ProgressBar=0x7f0c015b; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c015c; + public static final int Widget_AppCompat_RatingBar=0x7f0c015d; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c015e; + public static final int Widget_AppCompat_RatingBar_Small=0x7f0c015f; + public static final int Widget_AppCompat_SearchView=0x7f0c0160; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c0161; + public static final int Widget_AppCompat_SeekBar=0x7f0c0162; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c0163; + public static final int Widget_AppCompat_Spinner=0x7f0c0164; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c0165; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0166; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c0167; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0168; + public static final int Widget_AppCompat_Toolbar=0x7f0c0169; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c016a; + public static final int Widget_Compat_NotificationActionContainer=0x7f0c016b; + public static final int Widget_Compat_NotificationActionText=0x7f0c016c; + public static final int Widget_Support_CoordinatorLayout=0x7f0c016d; + public static final int redboxButton=0x7f0c016e; + } + public static final class styleable { + /** + * Attributes that can be used with a ActionBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionBar_background com.memoapp:background}Specifies a background drawable for the action bar.
{@link #ActionBar_backgroundSplit com.memoapp:backgroundSplit}Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionBar_backgroundStacked com.memoapp:backgroundStacked}Specifies a background drawable for a second stacked row of the action bar.
{@link #ActionBar_contentInsetEnd com.memoapp:contentInsetEnd}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetEndWithActions com.memoapp:contentInsetEndWithActions}Minimum inset for content views within a bar when actions from a menu + * are present.
{@link #ActionBar_contentInsetLeft com.memoapp:contentInsetLeft}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetRight com.memoapp:contentInsetRight}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStart com.memoapp:contentInsetStart}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStartWithNavigation com.memoapp:contentInsetStartWithNavigation}Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button.
{@link #ActionBar_customNavigationLayout com.memoapp:customNavigationLayout}Specifies a layout for custom navigation.
{@link #ActionBar_displayOptions com.memoapp:displayOptions}Options affecting how the action bar is displayed.
{@link #ActionBar_divider com.memoapp:divider}Specifies the drawable used for item dividers.
{@link #ActionBar_elevation com.memoapp:elevation}Elevation for the action bar itself
{@link #ActionBar_height com.memoapp:height}
{@link #ActionBar_hideOnContentScroll com.memoapp:hideOnContentScroll}Set true to hide the action bar on a vertical nested scroll of content.
{@link #ActionBar_homeAsUpIndicator com.memoapp:homeAsUpIndicator}Specifies a drawable to use for the 'home as up' indicator.
{@link #ActionBar_homeLayout com.memoapp:homeLayout}Specifies a layout to use for the "home" section of the action bar.
{@link #ActionBar_icon com.memoapp:icon}Specifies the drawable used for the application icon.
{@link #ActionBar_indeterminateProgressStyle com.memoapp:indeterminateProgressStyle}Specifies a style resource to use for an indeterminate progress spinner.
{@link #ActionBar_itemPadding com.memoapp:itemPadding}Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar.
{@link #ActionBar_logo com.memoapp:logo}Specifies the drawable used for the application logo.
{@link #ActionBar_navigationMode com.memoapp:navigationMode}The type of navigation to use.
{@link #ActionBar_popupTheme com.memoapp:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #ActionBar_progressBarPadding com.memoapp:progressBarPadding}Specifies the horizontal padding on either end for an embedded progress bar.
{@link #ActionBar_progressBarStyle com.memoapp:progressBarStyle}Specifies a style resource to use for an embedded progress bar.
{@link #ActionBar_subtitle com.memoapp:subtitle}Specifies subtitle text used for navigationMode="normal"
{@link #ActionBar_subtitleTextStyle com.memoapp:subtitleTextStyle}Specifies a style to use for subtitle text.
{@link #ActionBar_title com.memoapp:title}
{@link #ActionBar_titleTextStyle com.memoapp:titleTextStyle}Specifies a style to use for title text.
+ * @see #ActionBar_background + * @see #ActionBar_backgroundSplit + * @see #ActionBar_backgroundStacked + * @see #ActionBar_contentInsetEnd + * @see #ActionBar_contentInsetEndWithActions + * @see #ActionBar_contentInsetLeft + * @see #ActionBar_contentInsetRight + * @see #ActionBar_contentInsetStart + * @see #ActionBar_contentInsetStartWithNavigation + * @see #ActionBar_customNavigationLayout + * @see #ActionBar_displayOptions + * @see #ActionBar_divider + * @see #ActionBar_elevation + * @see #ActionBar_height + * @see #ActionBar_hideOnContentScroll + * @see #ActionBar_homeAsUpIndicator + * @see #ActionBar_homeLayout + * @see #ActionBar_icon + * @see #ActionBar_indeterminateProgressStyle + * @see #ActionBar_itemPadding + * @see #ActionBar_logo + * @see #ActionBar_navigationMode + * @see #ActionBar_popupTheme + * @see #ActionBar_progressBarPadding + * @see #ActionBar_progressBarStyle + * @see #ActionBar_subtitle + * @see #ActionBar_subtitleTextStyle + * @see #ActionBar_title + * @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar={ + 0x7f020034, 0x7f020036, 0x7f020037, 0x7f02005b, + 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, + 0x7f020060, 0x7f020063, 0x7f020068, 0x7f020069, + 0x7f020074, 0x7f020087, 0x7f020088, 0x7f020089, + 0x7f02008a, 0x7f02008b, 0x7f020090, 0x7f020093, + 0x7f0200a9, 0x7f0200b0, 0x7f0200be, 0x7f0200c5, + 0x7f0200c6, 0x7f0200f1, 0x7f0200f4, 0x7f02010f, + 0x7f020118 + }; + /** + *

+ * @attr description + * Specifies a background drawable for the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:background + */ + public static final int ActionBar_background=0; + /** + *

+ * @attr description + * Specifies a background drawable for the bottom component of a split action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:backgroundSplit + */ + public static final int ActionBar_backgroundSplit=1; + /** + *

+ * @attr description + * Specifies a background drawable for a second stacked row of the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:backgroundStacked + */ + public static final int ActionBar_backgroundStacked=2; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd=3; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions=4; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft=5; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetRight + */ + public static final int ActionBar_contentInsetRight=6; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetStart + */ + public static final int ActionBar_contentInsetStart=7; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation=8; + /** + *

+ * @attr description + * Specifies a layout for custom navigation. Overrides navigationMode. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout=9; + /** + *

+ * @attr description + * Options affecting how the action bar is displayed. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ * + * @attr name com.memoapp:displayOptions + */ + public static final int ActionBar_displayOptions=10; + /** + *

+ * @attr description + * Specifies the drawable used for item dividers. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:divider + */ + public static final int ActionBar_divider=11; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:elevation + */ + public static final int ActionBar_elevation=12; + /** + *

+ * @attr description + * Specifies a fixed height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:height + */ + public static final int ActionBar_height=13; + /** + *

+ * @attr description + * Set true to hide the action bar on a vertical nested scroll of content. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll=14; + /** + *

+ * @attr description + * Up navigation glyph + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator=15; + /** + *

+ * @attr description + * Specifies a layout to use for the "home" section of the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:homeLayout + */ + public static final int ActionBar_homeLayout=16; + /** + *

+ * @attr description + * Specifies the drawable used for the application icon. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:icon + */ + public static final int ActionBar_icon=17; + /** + *

+ * @attr description + * Specifies a style resource to use for an indeterminate progress spinner. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle=18; + /** + *

+ * @attr description + * Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:itemPadding + */ + public static final int ActionBar_itemPadding=19; + /** + *

+ * @attr description + * Specifies the drawable used for the application logo. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:logo + */ + public static final int ActionBar_logo=20; + /** + *

+ * @attr description + * The type of navigation to use. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ * + * @attr name com.memoapp:navigationMode + */ + public static final int ActionBar_navigationMode=21; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:popupTheme + */ + public static final int ActionBar_popupTheme=22; + /** + *

+ * @attr description + * Specifies the horizontal padding on either end for an embedded progress bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:progressBarPadding + */ + public static final int ActionBar_progressBarPadding=23; + /** + *

+ * @attr description + * Specifies a style resource to use for an embedded progress bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:progressBarStyle + */ + public static final int ActionBar_progressBarStyle=24; + /** + *

+ * @attr description + * Specifies subtitle text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:subtitle + */ + public static final int ActionBar_subtitle=25; + /** + *

+ * @attr description + * Specifies a style to use for subtitle text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle=26; + /** + *

+ * @attr description + * Specifies title text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:title + */ + public static final int ActionBar_title=27; + /** + *

+ * @attr description + * Specifies a style to use for title text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:titleTextStyle + */ + public static final int ActionBar_titleTextStyle=28; + /** + * Attributes that can be used with a ActionBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ * @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout={ + 0x010100b3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #ActionBarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity=0; + /** + * Attributes that can be used with a ActionMenuItemView. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ * @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView={ + 0x0101013f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ActionMenuItemView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth=0; + public static final int[] ActionMenuView={ + }; + /** + * Attributes that can be used with a ActionMode. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionMode_background com.memoapp:background}Specifies a background drawable for the action bar.
{@link #ActionMode_backgroundSplit com.memoapp:backgroundSplit}Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionMode_closeItemLayout com.memoapp:closeItemLayout}Specifies a layout to use for the "close" item at the starting edge.
{@link #ActionMode_height com.memoapp:height}
{@link #ActionMode_subtitleTextStyle com.memoapp:subtitleTextStyle}Specifies a style to use for subtitle text.
{@link #ActionMode_titleTextStyle com.memoapp:titleTextStyle}Specifies a style to use for title text.
+ * @see #ActionMode_background + * @see #ActionMode_backgroundSplit + * @see #ActionMode_closeItemLayout + * @see #ActionMode_height + * @see #ActionMode_subtitleTextStyle + * @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode={ + 0x7f020034, 0x7f020036, 0x7f02004b, 0x7f020087, + 0x7f0200f4, 0x7f020118 + }; + /** + *

+ * @attr description + * Specifies a background for the action mode bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:background + */ + public static final int ActionMode_background=0; + /** + *

+ * @attr description + * Specifies a background for the split action mode bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:backgroundSplit + */ + public static final int ActionMode_backgroundSplit=1; + /** + *

+ * @attr description + * Specifies a layout to use for the "close" item at the starting edge. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:closeItemLayout + */ + public static final int ActionMode_closeItemLayout=2; + /** + *

+ * @attr description + * Specifies a fixed height for the action mode bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:height + */ + public static final int ActionMode_height=3; + /** + *

+ * @attr description + * Specifies a style to use for subtitle text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle=4; + /** + *

+ * @attr description + * Specifies a style to use for title text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:titleTextStyle + */ + public static final int ActionMode_titleTextStyle=5; + /** + * Attributes that can be used with a ActivityChooserView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.memoapp:expandActivityOverflowButtonDrawable}The drawable to show in the button for expanding the activities overflow popup.
{@link #ActivityChooserView_initialActivityCount com.memoapp:initialActivityCount}The maximal number of items initially shown in the activity list.
+ * @see #ActivityChooserView_expandActivityOverflowButtonDrawable + * @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView={ + 0x7f020075, 0x7f020091 + }; + /** + *

+ * @attr description + * The drawable to show in the button for expanding the activities overflow popup. + * Note: Clients would like to set this drawable + * as a clue about the action the chosen activity will perform. For + * example, if share activity is to be chosen the drawable should + * give a clue that sharing is to be performed. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; + /** + *

+ * @attr description + * The maximal number of items initially shown in the activity list. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount=1; + /** + * Attributes that can be used with a AlertDialog. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonIconDimen com.memoapp:buttonIconDimen}
{@link #AlertDialog_buttonPanelSideLayout com.memoapp:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.memoapp:listItemLayout}
{@link #AlertDialog_listLayout com.memoapp:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.memoapp:multiChoiceItemLayout}
{@link #AlertDialog_showTitle com.memoapp:showTitle}
{@link #AlertDialog_singleChoiceItemLayout com.memoapp:singleChoiceItemLayout}
+ * @see #AlertDialog_android_layout + * @see #AlertDialog_buttonIconDimen + * @see #AlertDialog_buttonPanelSideLayout + * @see #AlertDialog_listItemLayout + * @see #AlertDialog_listLayout + * @see #AlertDialog_multiChoiceItemLayout + * @see #AlertDialog_showTitle + * @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog={ + 0x010100f2, 0x7f020042, 0x7f020043, 0x7f0200a0, + 0x7f0200a1, 0x7f0200ad, 0x7f0200e6, 0x7f0200e7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int AlertDialog_android_layout=0; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#buttonIconDimen} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:buttonIconDimen + */ + public static final int AlertDialog_buttonIconDimen=1; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#buttonPanelSideLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout=2; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#listItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:listItemLayout + */ + public static final int AlertDialog_listItemLayout=3; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#listLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:listLayout + */ + public static final int AlertDialog_listLayout=4; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#multiChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout=5; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#showTitle} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:showTitle + */ + public static final int AlertDialog_showTitle=6; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#singleChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout=7; + /** + * Attributes that can be used with a AnimatedStateListDrawableCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableCompat_android_dither android:dither}
{@link #AnimatedStateListDrawableCompat_android_visible android:visible}
{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}
{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}
{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}
{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}
+ * @see #AnimatedStateListDrawableCompat_android_dither + * @see #AnimatedStateListDrawableCompat_android_visible + * @see #AnimatedStateListDrawableCompat_android_variablePadding + * @see #AnimatedStateListDrawableCompat_android_constantSize + * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration + * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration + */ + public static final int[] AnimatedStateListDrawableCompat={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

+ * @attr description + * Enables or disables dithering of the bitmap if the bitmap does not have the + * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + * an RGB 565 screen). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int AnimatedStateListDrawableCompat_android_dither=0; + /** + *

+ * @attr description + * Indicates whether the drawable should be initially visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int AnimatedStateListDrawableCompat_android_visible=1; + /** + *

+ * @attr description + * If true, allows the drawable's padding to change based on the + * current state that is selected. If false, the padding will + * stay the same (based on the maximum padding of all the states). + * Enabling this feature requires that the owner of the drawable + * deal with performing layout when the state changes, which is + * often not supported. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; + /** + *

+ * @attr description + * If true, the drawable's reported internal size will remain + * constant as the state changes; the size is the maximum of all + * of the states. If false, the size will vary based on the + * current state. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int AnimatedStateListDrawableCompat_android_constantSize=3; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade in a new state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade out an old state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; + /** + * Attributes that can be used with a AnimatedStateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableItem_android_id android:id}
{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}
+ * @see #AnimatedStateListDrawableItem_android_id + * @see #AnimatedStateListDrawableItem_android_drawable + */ + public static final int[] AnimatedStateListDrawableItem={ + 0x010100d0, 0x01010199 + }; + /** + *

+ * @attr description + * Keyframe identifier for use in specifying transitions. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int AnimatedStateListDrawableItem_android_id=0; + /** + *

+ * @attr description + * Reference to a drawable resource to use for the frame. If not + * given, the drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableItem_android_drawable=1; + /** + * Attributes that can be used with a AnimatedStateListDrawableTransition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}
{@link #AnimatedStateListDrawableTransition_android_toId android:toId}
{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}
{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}
+ * @see #AnimatedStateListDrawableTransition_android_drawable + * @see #AnimatedStateListDrawableTransition_android_toId + * @see #AnimatedStateListDrawableTransition_android_fromId + * @see #AnimatedStateListDrawableTransition_android_reversible + */ + public static final int[] AnimatedStateListDrawableTransition={ + 0x01010199, 0x01010449, 0x0101044a, 0x0101044b + }; + /** + *

+ * @attr description + * Reference to a animation drawable resource to use for the frame. If not + * given, the animation drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableTransition_android_drawable=0; + /** + *

+ * @attr description + * Keyframe identifier for the ending state. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:toId + */ + public static final int AnimatedStateListDrawableTransition_android_toId=1; + /** + *

+ * @attr description + * Keyframe identifier for the starting state. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:fromId + */ + public static final int AnimatedStateListDrawableTransition_android_fromId=2; + /** + *

+ * @attr description + * Whether this transition is reversible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:reversible + */ + public static final int AnimatedStateListDrawableTransition_android_reversible=3; + /** + * Attributes that can be used with a AppCompatImageView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.memoapp:srcCompat}Sets a drawable as the content of this ImageView.
{@link #AppCompatImageView_tint com.memoapp:tint}Tint to apply to the image source.
{@link #AppCompatImageView_tintMode com.memoapp:tintMode}Blending mode used to apply the image source tint.
+ * @see #AppCompatImageView_android_src + * @see #AppCompatImageView_srcCompat + * @see #AppCompatImageView_tint + * @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView={ + 0x01010119, 0x7f0200ec, 0x7f02010d, 0x7f02010e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#src} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:src + */ + public static final int AppCompatImageView_android_src=0; + /** + *

+ * @attr description + * Sets a drawable as the content of this ImageView. Allows the use of vector drawable + * when running on older versions of the platform. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:srcCompat + */ + public static final int AppCompatImageView_srcCompat=1; + /** + *

+ * @attr description + * Tint to apply to the image source. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:tint + */ + public static final int AppCompatImageView_tint=2; + /** + *

+ * @attr description + * Blending mode used to apply the image source tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:tintMode + */ + public static final int AppCompatImageView_tintMode=3; + /** + * Attributes that can be used with a AppCompatSeekBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark com.memoapp:tickMark}Drawable displayed at each progress position on a seekbar.
{@link #AppCompatSeekBar_tickMarkTint com.memoapp:tickMarkTint}Tint to apply to the tick mark drawable.
{@link #AppCompatSeekBar_tickMarkTintMode com.memoapp:tickMarkTintMode}Blending mode used to apply the tick mark tint.
+ * @see #AppCompatSeekBar_android_thumb + * @see #AppCompatSeekBar_tickMark + * @see #AppCompatSeekBar_tickMarkTint + * @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar={ + 0x01010142, 0x7f02010a, 0x7f02010b, 0x7f02010c + }; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb=0; + /** + *

+ * @attr description + * Drawable displayed at each progress position on a seekbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:tickMark + */ + public static final int AppCompatSeekBar_tickMark=1; + /** + *

+ * @attr description + * Tint to apply to the tick mark drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint=2; + /** + *

+ * @attr description + * Blending mode used to apply the tick mark tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode=3; + /** + * Attributes that can be used with a AppCompatTextHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
+ * @see #AppCompatTextHelper_android_textAppearance + * @see #AppCompatTextHelper_android_drawableTop + * @see #AppCompatTextHelper_android_drawableBottom + * @see #AppCompatTextHelper_android_drawableLeft + * @see #AppCompatTextHelper_android_drawableRight + * @see #AppCompatTextHelper_android_drawableStart + * @see #AppCompatTextHelper_android_drawableEnd + */ + public static final int[] AppCompatTextHelper={ + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableTop} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop=1; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableBottom} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom=2; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableLeft} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft=3; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableRight} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight=4; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableStart} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart=5; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableEnd} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd=6; + /** + * Attributes that can be used with a AppCompatTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize com.memoapp:autoSizeMaxTextSize}The maximum text size constraint to be used when auto-sizing text.
{@link #AppCompatTextView_autoSizeMinTextSize com.memoapp:autoSizeMinTextSize}The minimum text size constraint to be used when auto-sizing text.
{@link #AppCompatTextView_autoSizePresetSizes com.memoapp:autoSizePresetSizes}Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform.
{@link #AppCompatTextView_autoSizeStepGranularity com.memoapp:autoSizeStepGranularity}Specify the auto-size step size if autoSizeTextType is set to + * uniform.
{@link #AppCompatTextView_autoSizeTextType com.memoapp:autoSizeTextType}Specify the type of auto-size.
{@link #AppCompatTextView_firstBaselineToTopHeight com.memoapp:firstBaselineToTopHeight}Distance from the top of the TextView to the first text baseline.
{@link #AppCompatTextView_fontFamily com.memoapp:fontFamily}The attribute for the font family.
{@link #AppCompatTextView_lastBaselineToBottomHeight com.memoapp:lastBaselineToBottomHeight}Distance from the bottom of the TextView to the last text baseline.
{@link #AppCompatTextView_lineHeight com.memoapp:lineHeight}Explicit height between lines of text.
{@link #AppCompatTextView_textAllCaps com.memoapp:textAllCaps}Present the text in ALL CAPS.
+ * @see #AppCompatTextView_android_textAppearance + * @see #AppCompatTextView_autoSizeMaxTextSize + * @see #AppCompatTextView_autoSizeMinTextSize + * @see #AppCompatTextView_autoSizePresetSizes + * @see #AppCompatTextView_autoSizeStepGranularity + * @see #AppCompatTextView_autoSizeTextType + * @see #AppCompatTextView_firstBaselineToTopHeight + * @see #AppCompatTextView_fontFamily + * @see #AppCompatTextView_lastBaselineToBottomHeight + * @see #AppCompatTextView_lineHeight + * @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView={ + 0x01010034, 0x7f02002f, 0x7f020030, 0x7f020031, + 0x7f020032, 0x7f020033, 0x7f020079, 0x7f02007b, + 0x7f020095, 0x7f02009d, 0x7f0200fa + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance=0; + /** + *

+ * @attr description + * The maximum text size constraint to be used when auto-sizing text. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize=1; + /** + *

+ * @attr description + * The minimum text size constraint to be used when auto-sizing text. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize=2; + /** + *

+ * @attr description + * Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform. Overrides + * autoSizeStepGranularity if set. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes=3; + /** + *

+ * @attr description + * Specify the auto-size step size if autoSizeTextType is set to + * uniform. The default is 1px. Overwrites + * autoSizePresetSizes if set. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity=4; + /** + *

+ * @attr description + * Specify the type of auto-size. Note that this feature is not supported by EditText, + * works only for TextView. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ * + * @attr name com.memoapp:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType=5; + /** + *

+ * @attr description + * Distance from the top of the TextView to the first text baseline. If set, this + * overrides the value set for paddingTop. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:firstBaselineToTopHeight + */ + public static final int AppCompatTextView_firstBaselineToTopHeight=6; + /** + *

+ * @attr description + * The attribute for the font family. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:fontFamily + */ + public static final int AppCompatTextView_fontFamily=7; + /** + *

+ * @attr description + * Distance from the bottom of the TextView to the last text baseline. If set, this + * overrides the value set for paddingBottom. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:lastBaselineToBottomHeight + */ + public static final int AppCompatTextView_lastBaselineToBottomHeight=8; + /** + *

+ * @attr description + * Explicit height between lines of text. If set, this will override the values set + * for lineSpacingExtra and lineSpacingMultiplier. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:lineHeight + */ + public static final int AppCompatTextView_lineHeight=9; + /** + *

+ * @attr description + * Present the text in ALL CAPS. This may use a small-caps form when available. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps=10; + /** + * Attributes that can be used with a AppCompatTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider com.memoapp:actionBarDivider}Custom divider drawable to use for elements in the action bar.
{@link #AppCompatTheme_actionBarItemBackground com.memoapp:actionBarItemBackground}Custom item state list drawable background for action bar items.
{@link #AppCompatTheme_actionBarPopupTheme com.memoapp:actionBarPopupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #AppCompatTheme_actionBarSize com.memoapp:actionBarSize}Size of the Action Bar, including the contextual + * bar used to present Action Modes.
{@link #AppCompatTheme_actionBarSplitStyle com.memoapp:actionBarSplitStyle}Reference to a style for the split Action Bar.
{@link #AppCompatTheme_actionBarStyle com.memoapp:actionBarStyle}Reference to a style for the Action Bar
{@link #AppCompatTheme_actionBarTabBarStyle com.memoapp:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.memoapp:actionBarTabStyle}Default style for tabs within an action bar
{@link #AppCompatTheme_actionBarTabTextStyle com.memoapp:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.memoapp:actionBarTheme}Reference to a theme that should be used to inflate the + * action bar.
{@link #AppCompatTheme_actionBarWidgetTheme com.memoapp:actionBarWidgetTheme}Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar.
{@link #AppCompatTheme_actionButtonStyle com.memoapp:actionButtonStyle}Default action button style.
{@link #AppCompatTheme_actionDropDownStyle com.memoapp:actionDropDownStyle}Default ActionBar dropdown style.
{@link #AppCompatTheme_actionMenuTextAppearance com.memoapp:actionMenuTextAppearance}TextAppearance style that will be applied to text that + * appears within action menu items.
{@link #AppCompatTheme_actionMenuTextColor com.memoapp:actionMenuTextColor}Color for text that appears within action menu items.
{@link #AppCompatTheme_actionModeBackground com.memoapp:actionModeBackground}Background drawable to use for action mode UI
{@link #AppCompatTheme_actionModeCloseButtonStyle com.memoapp:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.memoapp:actionModeCloseDrawable}Drawable to use for the close action mode button
{@link #AppCompatTheme_actionModeCopyDrawable com.memoapp:actionModeCopyDrawable}Drawable to use for the Copy action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeCutDrawable com.memoapp:actionModeCutDrawable}Drawable to use for the Cut action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeFindDrawable com.memoapp:actionModeFindDrawable}Drawable to use for the Find action button in WebView selection action modes
{@link #AppCompatTheme_actionModePasteDrawable com.memoapp:actionModePasteDrawable}Drawable to use for the Paste action button in Contextual Action Bar
{@link #AppCompatTheme_actionModePopupWindowStyle com.memoapp:actionModePopupWindowStyle}PopupWindow style to use for action modes when showing as a window overlay.
{@link #AppCompatTheme_actionModeSelectAllDrawable com.memoapp:actionModeSelectAllDrawable}Drawable to use for the Select all action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeShareDrawable com.memoapp:actionModeShareDrawable}Drawable to use for the Share action button in WebView selection action modes
{@link #AppCompatTheme_actionModeSplitBackground com.memoapp:actionModeSplitBackground}Background drawable to use for action mode UI in the lower split bar
{@link #AppCompatTheme_actionModeStyle com.memoapp:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.memoapp:actionModeWebSearchDrawable}Drawable to use for the Web Search action button in WebView selection action modes
{@link #AppCompatTheme_actionOverflowButtonStyle com.memoapp:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.memoapp:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.memoapp:activityChooserViewStyle}Default ActivityChooserView style.
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.memoapp:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.memoapp:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.memoapp:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.memoapp:alertDialogTheme}Theme to use for alert dialogs spawned from this theme.
{@link #AppCompatTheme_autoCompleteTextViewStyle com.memoapp:autoCompleteTextViewStyle}Default AutoCompleteTextView style.
{@link #AppCompatTheme_borderlessButtonStyle com.memoapp:borderlessButtonStyle}Style for buttons without an explicit border, often used in groups.
{@link #AppCompatTheme_buttonBarButtonStyle com.memoapp:buttonBarButtonStyle}Style for buttons within button bars
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.memoapp:buttonBarNegativeButtonStyle}Style for the "negative" buttons within button bars
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.memoapp:buttonBarNeutralButtonStyle}Style for the "neutral" buttons within button bars
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.memoapp:buttonBarPositiveButtonStyle}Style for the "positive" buttons within button bars
{@link #AppCompatTheme_buttonBarStyle com.memoapp:buttonBarStyle}Style for button bars
{@link #AppCompatTheme_buttonStyle com.memoapp:buttonStyle}Normal Button style.
{@link #AppCompatTheme_buttonStyleSmall com.memoapp:buttonStyleSmall}Small Button style.
{@link #AppCompatTheme_checkboxStyle com.memoapp:checkboxStyle}Default Checkbox style.
{@link #AppCompatTheme_checkedTextViewStyle com.memoapp:checkedTextViewStyle}Default CheckedTextView style.
{@link #AppCompatTheme_colorAccent com.memoapp:colorAccent}Bright complement to the primary branding color.
{@link #AppCompatTheme_colorBackgroundFloating com.memoapp:colorBackgroundFloating}Default color of background imagery for floating components, ex.
{@link #AppCompatTheme_colorButtonNormal com.memoapp:colorButtonNormal}The color applied to framework buttons in their normal state.
{@link #AppCompatTheme_colorControlActivated com.memoapp:colorControlActivated}The color applied to framework controls in their activated (ex.
{@link #AppCompatTheme_colorControlHighlight com.memoapp:colorControlHighlight}The color applied to framework control highlights (ex.
{@link #AppCompatTheme_colorControlNormal com.memoapp:colorControlNormal}The color applied to framework controls in their normal state.
{@link #AppCompatTheme_colorError com.memoapp:colorError}Color used for error states and things that need to be drawn to + * the user's attention.
{@link #AppCompatTheme_colorPrimary com.memoapp:colorPrimary}The primary branding color for the app.
{@link #AppCompatTheme_colorPrimaryDark com.memoapp:colorPrimaryDark}Dark variant of the primary branding color.
{@link #AppCompatTheme_colorSwitchThumbNormal com.memoapp:colorSwitchThumbNormal}The color applied to framework switch thumbs in their normal state.
{@link #AppCompatTheme_controlBackground com.memoapp:controlBackground}The background used by framework controls.
{@link #AppCompatTheme_dialogCornerRadius com.memoapp:dialogCornerRadius}Preferred corner radius of dialogs.
{@link #AppCompatTheme_dialogPreferredPadding com.memoapp:dialogPreferredPadding}Preferred padding for dialog content.
{@link #AppCompatTheme_dialogTheme com.memoapp:dialogTheme}Theme to use for dialogs spawned from this theme.
{@link #AppCompatTheme_dividerHorizontal com.memoapp:dividerHorizontal}A drawable that may be used as a horizontal divider between visual elements.
{@link #AppCompatTheme_dividerVertical com.memoapp:dividerVertical}A drawable that may be used as a vertical divider between visual elements.
{@link #AppCompatTheme_dropDownListViewStyle com.memoapp:dropDownListViewStyle}ListPopupWindow compatibility
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.memoapp:dropdownListPreferredItemHeight}The preferred item height for dropdown lists.
{@link #AppCompatTheme_editTextBackground com.memoapp:editTextBackground}EditText background drawable.
{@link #AppCompatTheme_editTextColor com.memoapp:editTextColor}EditText text foreground color.
{@link #AppCompatTheme_editTextStyle com.memoapp:editTextStyle}Default EditText style.
{@link #AppCompatTheme_homeAsUpIndicator com.memoapp:homeAsUpIndicator}Specifies a drawable to use for the 'home as up' indicator.
{@link #AppCompatTheme_imageButtonStyle com.memoapp:imageButtonStyle}ImageButton background drawable.
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.memoapp:listChoiceBackgroundIndicator}Drawable used as a background for selected list items.
{@link #AppCompatTheme_listDividerAlertDialog com.memoapp:listDividerAlertDialog}The list divider used in alert dialogs.
{@link #AppCompatTheme_listMenuViewStyle com.memoapp:listMenuViewStyle}Default menu-style ListView style.
{@link #AppCompatTheme_listPopupWindowStyle com.memoapp:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.memoapp:listPreferredItemHeight}The preferred list item height.
{@link #AppCompatTheme_listPreferredItemHeightLarge com.memoapp:listPreferredItemHeightLarge}A larger, more robust list item height.
{@link #AppCompatTheme_listPreferredItemHeightSmall com.memoapp:listPreferredItemHeightSmall}A smaller, sleeker list item height.
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.memoapp:listPreferredItemPaddingLeft}The preferred padding along the left edge of list items.
{@link #AppCompatTheme_listPreferredItemPaddingRight com.memoapp:listPreferredItemPaddingRight}The preferred padding along the right edge of list items.
{@link #AppCompatTheme_panelBackground com.memoapp:panelBackground}The background of a panel when it is inset from the left and right edges of the screen.
{@link #AppCompatTheme_panelMenuListTheme com.memoapp:panelMenuListTheme}Default Panel Menu style.
{@link #AppCompatTheme_panelMenuListWidth com.memoapp:panelMenuListWidth}Default Panel Menu width.
{@link #AppCompatTheme_popupMenuStyle com.memoapp:popupMenuStyle}Default PopupMenu style.
{@link #AppCompatTheme_popupWindowStyle com.memoapp:popupWindowStyle}Default PopupWindow style.
{@link #AppCompatTheme_radioButtonStyle com.memoapp:radioButtonStyle}Default RadioButton style.
{@link #AppCompatTheme_ratingBarStyle com.memoapp:ratingBarStyle}Default RatingBar style.
{@link #AppCompatTheme_ratingBarStyleIndicator com.memoapp:ratingBarStyleIndicator}Indicator RatingBar style.
{@link #AppCompatTheme_ratingBarStyleSmall com.memoapp:ratingBarStyleSmall}Small indicator RatingBar style.
{@link #AppCompatTheme_searchViewStyle com.memoapp:searchViewStyle}Style for the search query widget.
{@link #AppCompatTheme_seekBarStyle com.memoapp:seekBarStyle}Default SeekBar style.
{@link #AppCompatTheme_selectableItemBackground com.memoapp:selectableItemBackground}A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges.
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.memoapp:selectableItemBackgroundBorderless}Background drawable for borderless standalone items that need focus/pressed states.
{@link #AppCompatTheme_spinnerDropDownItemStyle com.memoapp:spinnerDropDownItemStyle}Default Spinner style.
{@link #AppCompatTheme_spinnerStyle com.memoapp:spinnerStyle}Default Spinner style.
{@link #AppCompatTheme_switchStyle com.memoapp:switchStyle}Default style for the Switch widget.
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.memoapp:textAppearanceLargePopupMenu}Text color, typeface, size, and style for the text inside of a popup menu.
{@link #AppCompatTheme_textAppearanceListItem com.memoapp:textAppearanceListItem}The preferred TextAppearance for the primary text of list items.
{@link #AppCompatTheme_textAppearanceListItemSecondary com.memoapp:textAppearanceListItemSecondary}The preferred TextAppearance for the secondary text of list items.
{@link #AppCompatTheme_textAppearanceListItemSmall com.memoapp:textAppearanceListItemSmall}The preferred TextAppearance for the primary text of small list items.
{@link #AppCompatTheme_textAppearancePopupMenuHeader com.memoapp:textAppearancePopupMenuHeader}Text color, typeface, size, and style for header text inside of a popup menu.
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.memoapp:textAppearanceSearchResultSubtitle}Text color, typeface, size, and style for system search result subtitle.
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.memoapp:textAppearanceSearchResultTitle}Text color, typeface, size, and style for system search result title.
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.memoapp:textAppearanceSmallPopupMenu}Text color, typeface, size, and style for small text inside of a popup menu.
{@link #AppCompatTheme_textColorAlertDialogListItem com.memoapp:textColorAlertDialogListItem}Color of list item text in alert dialogs.
{@link #AppCompatTheme_textColorSearchUrl com.memoapp:textColorSearchUrl}Text color for urls in search suggestions, used by things like global search
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.memoapp:toolbarNavigationButtonStyle}Default Toolar NavigationButtonStyle
{@link #AppCompatTheme_toolbarStyle com.memoapp:toolbarStyle}Default Toolbar style.
{@link #AppCompatTheme_tooltipForegroundColor com.memoapp:tooltipForegroundColor}Foreground color to use for tooltips
{@link #AppCompatTheme_tooltipFrameBackground com.memoapp:tooltipFrameBackground}Background to use for tooltips
{@link #AppCompatTheme_viewInflaterClass com.memoapp:viewInflaterClass}
{@link #AppCompatTheme_windowActionBar com.memoapp:windowActionBar}Flag indicating whether this window should have an Action Bar + * in place of the usual title bar.
{@link #AppCompatTheme_windowActionBarOverlay com.memoapp:windowActionBarOverlay}Flag indicating whether this window's Action Bar should overlay + * application content.
{@link #AppCompatTheme_windowActionModeOverlay com.memoapp:windowActionModeOverlay}Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar).
{@link #AppCompatTheme_windowFixedHeightMajor com.memoapp:windowFixedHeightMajor}A fixed height for the window along the major axis of the screen, + * that is, when in portrait.
{@link #AppCompatTheme_windowFixedHeightMinor com.memoapp:windowFixedHeightMinor}A fixed height for the window along the minor axis of the screen, + * that is, when in landscape.
{@link #AppCompatTheme_windowFixedWidthMajor com.memoapp:windowFixedWidthMajor}A fixed width for the window along the major axis of the screen, + * that is, when in landscape.
{@link #AppCompatTheme_windowFixedWidthMinor com.memoapp:windowFixedWidthMinor}A fixed width for the window along the minor axis of the screen, + * that is, when in portrait.
{@link #AppCompatTheme_windowMinWidthMajor com.memoapp:windowMinWidthMajor}The minimum width the window is allowed to be, along the major + * axis of the screen.
{@link #AppCompatTheme_windowMinWidthMinor com.memoapp:windowMinWidthMinor}The minimum width the window is allowed to be, along the minor + * axis of the screen.
{@link #AppCompatTheme_windowNoTitle com.memoapp:windowNoTitle}Flag indicating whether there should be no title on this window.
+ * @see #AppCompatTheme_android_windowIsFloating + * @see #AppCompatTheme_android_windowAnimationStyle + * @see #AppCompatTheme_actionBarDivider + * @see #AppCompatTheme_actionBarItemBackground + * @see #AppCompatTheme_actionBarPopupTheme + * @see #AppCompatTheme_actionBarSize + * @see #AppCompatTheme_actionBarSplitStyle + * @see #AppCompatTheme_actionBarStyle + * @see #AppCompatTheme_actionBarTabBarStyle + * @see #AppCompatTheme_actionBarTabStyle + * @see #AppCompatTheme_actionBarTabTextStyle + * @see #AppCompatTheme_actionBarTheme + * @see #AppCompatTheme_actionBarWidgetTheme + * @see #AppCompatTheme_actionButtonStyle + * @see #AppCompatTheme_actionDropDownStyle + * @see #AppCompatTheme_actionMenuTextAppearance + * @see #AppCompatTheme_actionMenuTextColor + * @see #AppCompatTheme_actionModeBackground + * @see #AppCompatTheme_actionModeCloseButtonStyle + * @see #AppCompatTheme_actionModeCloseDrawable + * @see #AppCompatTheme_actionModeCopyDrawable + * @see #AppCompatTheme_actionModeCutDrawable + * @see #AppCompatTheme_actionModeFindDrawable + * @see #AppCompatTheme_actionModePasteDrawable + * @see #AppCompatTheme_actionModePopupWindowStyle + * @see #AppCompatTheme_actionModeSelectAllDrawable + * @see #AppCompatTheme_actionModeShareDrawable + * @see #AppCompatTheme_actionModeSplitBackground + * @see #AppCompatTheme_actionModeStyle + * @see #AppCompatTheme_actionModeWebSearchDrawable + * @see #AppCompatTheme_actionOverflowButtonStyle + * @see #AppCompatTheme_actionOverflowMenuStyle + * @see #AppCompatTheme_activityChooserViewStyle + * @see #AppCompatTheme_alertDialogButtonGroupStyle + * @see #AppCompatTheme_alertDialogCenterButtons + * @see #AppCompatTheme_alertDialogStyle + * @see #AppCompatTheme_alertDialogTheme + * @see #AppCompatTheme_autoCompleteTextViewStyle + * @see #AppCompatTheme_borderlessButtonStyle + * @see #AppCompatTheme_buttonBarButtonStyle + * @see #AppCompatTheme_buttonBarNegativeButtonStyle + * @see #AppCompatTheme_buttonBarNeutralButtonStyle + * @see #AppCompatTheme_buttonBarPositiveButtonStyle + * @see #AppCompatTheme_buttonBarStyle + * @see #AppCompatTheme_buttonStyle + * @see #AppCompatTheme_buttonStyleSmall + * @see #AppCompatTheme_checkboxStyle + * @see #AppCompatTheme_checkedTextViewStyle + * @see #AppCompatTheme_colorAccent + * @see #AppCompatTheme_colorBackgroundFloating + * @see #AppCompatTheme_colorButtonNormal + * @see #AppCompatTheme_colorControlActivated + * @see #AppCompatTheme_colorControlHighlight + * @see #AppCompatTheme_colorControlNormal + * @see #AppCompatTheme_colorError + * @see #AppCompatTheme_colorPrimary + * @see #AppCompatTheme_colorPrimaryDark + * @see #AppCompatTheme_colorSwitchThumbNormal + * @see #AppCompatTheme_controlBackground + * @see #AppCompatTheme_dialogCornerRadius + * @see #AppCompatTheme_dialogPreferredPadding + * @see #AppCompatTheme_dialogTheme + * @see #AppCompatTheme_dividerHorizontal + * @see #AppCompatTheme_dividerVertical + * @see #AppCompatTheme_dropDownListViewStyle + * @see #AppCompatTheme_dropdownListPreferredItemHeight + * @see #AppCompatTheme_editTextBackground + * @see #AppCompatTheme_editTextColor + * @see #AppCompatTheme_editTextStyle + * @see #AppCompatTheme_homeAsUpIndicator + * @see #AppCompatTheme_imageButtonStyle + * @see #AppCompatTheme_listChoiceBackgroundIndicator + * @see #AppCompatTheme_listDividerAlertDialog + * @see #AppCompatTheme_listMenuViewStyle + * @see #AppCompatTheme_listPopupWindowStyle + * @see #AppCompatTheme_listPreferredItemHeight + * @see #AppCompatTheme_listPreferredItemHeightLarge + * @see #AppCompatTheme_listPreferredItemHeightSmall + * @see #AppCompatTheme_listPreferredItemPaddingLeft + * @see #AppCompatTheme_listPreferredItemPaddingRight + * @see #AppCompatTheme_panelBackground + * @see #AppCompatTheme_panelMenuListTheme + * @see #AppCompatTheme_panelMenuListWidth + * @see #AppCompatTheme_popupMenuStyle + * @see #AppCompatTheme_popupWindowStyle + * @see #AppCompatTheme_radioButtonStyle + * @see #AppCompatTheme_ratingBarStyle + * @see #AppCompatTheme_ratingBarStyleIndicator + * @see #AppCompatTheme_ratingBarStyleSmall + * @see #AppCompatTheme_searchViewStyle + * @see #AppCompatTheme_seekBarStyle + * @see #AppCompatTheme_selectableItemBackground + * @see #AppCompatTheme_selectableItemBackgroundBorderless + * @see #AppCompatTheme_spinnerDropDownItemStyle + * @see #AppCompatTheme_spinnerStyle + * @see #AppCompatTheme_switchStyle + * @see #AppCompatTheme_textAppearanceLargePopupMenu + * @see #AppCompatTheme_textAppearanceListItem + * @see #AppCompatTheme_textAppearanceListItemSecondary + * @see #AppCompatTheme_textAppearanceListItemSmall + * @see #AppCompatTheme_textAppearancePopupMenuHeader + * @see #AppCompatTheme_textAppearanceSearchResultSubtitle + * @see #AppCompatTheme_textAppearanceSearchResultTitle + * @see #AppCompatTheme_textAppearanceSmallPopupMenu + * @see #AppCompatTheme_textColorAlertDialogListItem + * @see #AppCompatTheme_textColorSearchUrl + * @see #AppCompatTheme_toolbarNavigationButtonStyle + * @see #AppCompatTheme_toolbarStyle + * @see #AppCompatTheme_tooltipForegroundColor + * @see #AppCompatTheme_tooltipFrameBackground + * @see #AppCompatTheme_viewInflaterClass + * @see #AppCompatTheme_windowActionBar + * @see #AppCompatTheme_windowActionBarOverlay + * @see #AppCompatTheme_windowActionModeOverlay + * @see #AppCompatTheme_windowFixedHeightMajor + * @see #AppCompatTheme_windowFixedHeightMinor + * @see #AppCompatTheme_windowFixedWidthMajor + * @see #AppCompatTheme_windowFixedWidthMinor + * @see #AppCompatTheme_windowMinWidthMajor + * @see #AppCompatTheme_windowMinWidthMinor + * @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme={ + 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, + 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, + 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, + 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, + 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, + 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, + 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, + 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, + 0x7f020021, 0x7f020025, 0x7f020026, 0x7f020027, + 0x7f020028, 0x7f02002e, 0x7f02003b, 0x7f02003c, + 0x7f02003d, 0x7f02003e, 0x7f02003f, 0x7f020040, + 0x7f020044, 0x7f020045, 0x7f020048, 0x7f020049, + 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, + 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, + 0x7f020057, 0x7f020058, 0x7f020061, 0x7f020065, + 0x7f020066, 0x7f020067, 0x7f02006a, 0x7f02006c, + 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, + 0x7f020073, 0x7f020089, 0x7f02008f, 0x7f02009e, + 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, + 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, + 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bd, + 0x7f0200bf, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, + 0x7f0200cc, 0x7f0200df, 0x7f0200e0, 0x7f0200e1, + 0x7f0200e2, 0x7f0200e9, 0x7f0200ea, 0x7f0200f8, + 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f0200fe, + 0x7f0200ff, 0x7f020100, 0x7f020101, 0x7f020102, + 0x7f020103, 0x7f020104, 0x7f020119, 0x7f02011a, + 0x7f02011b, 0x7f02011c, 0x7f020123, 0x7f020125, + 0x7f020126, 0x7f020127, 0x7f020128, 0x7f020129, + 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f02012d, + 0x7f02012e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating=0; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle=1; + /** + *

+ * @attr description + * Custom divider drawable to use for elements in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider=2; + /** + *

+ * @attr description + * Custom item state list drawable background for action bar items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground=3; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme=4; + /** + *

+ * @attr description + * Size of the Action Bar, including the contextual + * bar used to present Action Modes. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ * + * @attr name com.memoapp:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize=5; + /** + *

+ * @attr description + * Reference to a style for the split Action Bar. This style + * controls the split component that holds the menu/action + * buttons. actionBarStyle is still used for the primary + * bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle=6; + /** + *

+ * @attr description + * Reference to a style for the Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle=7; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#actionBarTabBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle=8; + /** + *

+ * @attr description + * Default style for tabs within an action bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle=9; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#actionBarTabTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle=10; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate the + * action bar. This will be inherited by any widget inflated + * into the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme=11; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar. Most of the time + * this will be a reference to the current theme, but when + * the action bar has a significantly different contrast + * profile than the rest of the activity the difference + * can become important. If this is set to @null the current + * theme will be used. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme=12; + /** + *

+ * @attr description + * Default action button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle=13; + /** + *

+ * @attr description + * Default ActionBar dropdown style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle=14; + /** + *

+ * @attr description + * TextAppearance style that will be applied to text that + * appears within action menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance=15; + /** + *

+ * @attr description + * Color for text that appears within action menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor=16; + /** + *

+ * @attr description + * Background drawable to use for action mode UI + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground=17; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#actionModeCloseButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle=18; + /** + *

+ * @attr description + * Drawable to use for the close action mode button + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable=19; + /** + *

+ * @attr description + * Drawable to use for the Copy action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable=20; + /** + *

+ * @attr description + * Drawable to use for the Cut action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable=21; + /** + *

+ * @attr description + * Drawable to use for the Find action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable=22; + /** + *

+ * @attr description + * Drawable to use for the Paste action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable=23; + /** + *

+ * @attr description + * PopupWindow style to use for action modes when showing as a window overlay. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle=24; + /** + *

+ * @attr description + * Drawable to use for the Select all action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable=25; + /** + *

+ * @attr description + * Drawable to use for the Share action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable=26; + /** + *

+ * @attr description + * Background drawable to use for action mode UI in the lower split bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground=27; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#actionModeStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle=28; + /** + *

+ * @attr description + * Drawable to use for the Web Search action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable=29; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#actionOverflowButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle=30; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#actionOverflowMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle=31; + /** + *

+ * @attr description + * Default ActivityChooserView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle=32; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#alertDialogButtonGroupStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#alertDialogCenterButtons} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons=34; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#alertDialogStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle=35; + /** + *

+ * @attr description + * Theme to use for alert dialogs spawned from this theme. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme=36; + /** + *

+ * @attr description + * Default AutoCompleteTextView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle=37; + /** + *

+ * @attr description + * Style for buttons without an explicit border, often used in groups. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle=38; + /** + *

+ * @attr description + * Style for buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle=39; + /** + *

+ * @attr description + * Style for the "negative" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; + /** + *

+ * @attr description + * Style for the "neutral" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; + /** + *

+ * @attr description + * Style for the "positive" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; + /** + *

+ * @attr description + * Style for button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle=43; + /** + *

+ * @attr description + * Normal Button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle=44; + /** + *

+ * @attr description + * Small Button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall=45; + /** + *

+ * @attr description + * Default Checkbox style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle=46; + /** + *

+ * @attr description + * Default CheckedTextView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle=47; + /** + *

+ * @attr description + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorAccent + */ + public static final int AppCompatTheme_colorAccent=48; + /** + *

+ * @attr description + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating=49; + /** + *

+ * @attr description + * The color applied to framework buttons in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal=50; + /** + *

+ * @attr description + * The color applied to framework controls in their activated (ex. checked) state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated=51; + /** + *

+ * @attr description + * The color applied to framework control highlights (ex. ripples, list selectors). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight=52; + /** + *

+ * @attr description + * The color applied to framework controls in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal=53; + /** + *

+ * @attr description + * Color used for error states and things that need to be drawn to + * the user's attention. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorError + */ + public static final int AppCompatTheme_colorError=54; + /** + *

+ * @attr description + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary=55; + /** + *

+ * @attr description + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark=56; + /** + *

+ * @attr description + * The color applied to framework switch thumbs in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal=57; + /** + *

+ * @attr description + * The background used by framework controls. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:controlBackground + */ + public static final int AppCompatTheme_controlBackground=58; + /** + *

+ * @attr description + * Preferred corner radius of dialogs. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:dialogCornerRadius + */ + public static final int AppCompatTheme_dialogCornerRadius=59; + /** + *

+ * @attr description + * Preferred padding for dialog content. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding=60; + /** + *

+ * @attr description + * Theme to use for dialogs spawned from this theme. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme=61; + /** + *

+ * @attr description + * A drawable that may be used as a horizontal divider between visual elements. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal=62; + /** + *

+ * @attr description + * A drawable that may be used as a vertical divider between visual elements. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical=63; + /** + *

+ * @attr description + * ListPopupWindow compatibility + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle=64; + /** + *

+ * @attr description + * The preferred item height for dropdown lists. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; + /** + *

+ * @attr description + * EditText background drawable. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground=66; + /** + *

+ * @attr description + * EditText text foreground color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:editTextColor + */ + public static final int AppCompatTheme_editTextColor=67; + /** + *

+ * @attr description + * Default EditText style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle=68; + /** + *

+ * @attr description + * Specifies a drawable to use for the 'home as up' indicator. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator=69; + /** + *

+ * @attr description + * ImageButton background drawable. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle=70; + /** + *

+ * @attr description + * Drawable used as a background for selected list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; + /** + *

+ * @attr description + * The list divider used in alert dialogs. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog=72; + /** + *

+ * @attr description + * Default menu-style ListView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle=73; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#listPopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle=74; + /** + *

+ * @attr description + * The preferred list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight=75; + /** + *

+ * @attr description + * A larger, more robust list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge=76; + /** + *

+ * @attr description + * A smaller, sleeker list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall=77; + /** + *

+ * @attr description + * The preferred padding along the left edge of list items. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; + /** + *

+ * @attr description + * The preferred padding along the right edge of list items. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight=79; + /** + *

+ * @attr description + * The background of a panel when it is inset from the left and right edges of the screen. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:panelBackground + */ + public static final int AppCompatTheme_panelBackground=80; + /** + *

+ * @attr description + * Default Panel Menu style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme=81; + /** + *

+ * @attr description + * Default Panel Menu width. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth=82; + /** + *

+ * @attr description + * Default PopupMenu style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle=83; + /** + *

+ * @attr description + * Default PopupWindow style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle=84; + /** + *

+ * @attr description + * Default RadioButton style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle=85; + /** + *

+ * @attr description + * Default RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle=86; + /** + *

+ * @attr description + * Indicator RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator=87; + /** + *

+ * @attr description + * Small indicator RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall=88; + /** + *

+ * @attr description + * Style for the search query widget. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle=89; + /** + *

+ * @attr description + * Default SeekBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle=90; + /** + *

+ * @attr description + * A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground=91; + /** + *

+ * @attr description + * Background drawable for borderless standalone items that need focus/pressed states. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; + /** + *

+ * @attr description + * Default Spinner style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle=93; + /** + *

+ * @attr description + * Default Spinner style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle=94; + /** + *

+ * @attr description + * Default style for the Switch widget. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:switchStyle + */ + public static final int AppCompatTheme_switchStyle=95; + /** + *

+ * @attr description + * Text color, typeface, size, and style for the text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; + /** + *

+ * @attr description + * The preferred TextAppearance for the primary text of list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem=97; + /** + *

+ * @attr description + * The preferred TextAppearance for the secondary text of list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary=98; + /** + *

+ * @attr description + * The preferred TextAppearance for the primary text of small list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall=99; + /** + *

+ * @attr description + * Text color, typeface, size, and style for header text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; + /** + *

+ * @attr description + * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; + /** + *

+ * @attr description + * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; + /** + *

+ * @attr description + * Text color, typeface, size, and style for small text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; + /** + *

+ * @attr description + * Color of list item text in alert dialogs. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem=104; + /** + *

+ * @attr description + * Text color for urls in search suggestions, used by things like global search + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl=105; + /** + *

+ * @attr description + * Default Toolar NavigationButtonStyle + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; + /** + *

+ * @attr description + * Default Toolbar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle=107; + /** + *

+ * @attr description + * Foreground color to use for tooltips + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor=108; + /** + *

+ * @attr description + * Background to use for tooltips + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground=109; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#viewInflaterClass} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:viewInflaterClass + */ + public static final int AppCompatTheme_viewInflaterClass=110; + /** + *

+ * @attr description + * Flag indicating whether this window should have an Action Bar + * in place of the usual title bar. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar=111; + /** + *

+ * @attr description + * Flag indicating whether this window's Action Bar should overlay + * application content. Does nothing if the window would not + * have an Action Bar. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay=112; + /** + *

+ * @attr description + * Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay=113; + /** + *

+ * @attr description + * A fixed height for the window along the major axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.memoapp:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor=114; + /** + *

+ * @attr description + * A fixed height for the window along the minor axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.memoapp:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor=115; + /** + *

+ * @attr description + * A fixed width for the window along the major axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.memoapp:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor=116; + /** + *

+ * @attr description + * A fixed width for the window along the minor axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.memoapp:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor=117; + /** + *

+ * @attr description + * The minimum width the window is allowed to be, along the major + * axis of the screen. That is, when in landscape. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.memoapp:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor=118; + /** + *

+ * @attr description + * The minimum width the window is allowed to be, along the minor + * axis of the screen. That is, when in portrait. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.memoapp:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor=119; + /** + *

+ * @attr description + * Flag indicating whether there should be no title on this window. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle=120; + /** + * Attributes that can be used with a ButtonBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.memoapp:allowStacking}Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side.
+ * @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout={ + 0x7f020029 + }; + /** + *

+ * @attr description + * Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:allowStacking + */ + public static final int ButtonBarLayout_allowStacking=0; + /** + * Attributes that can be used with a ColorStateListItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_alpha com.memoapp:alpha}Alpha multiplier applied to the base color.
+ * @see #ColorStateListItem_android_color + * @see #ColorStateListItem_android_alpha + * @see #ColorStateListItem_alpha + */ + public static final int[] ColorStateListItem={ + 0x010101a5, 0x0101031f, 0x7f02002a + }; + /** + *

+ * @attr description + * Base color for this state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int ColorStateListItem_android_color=0; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha=1; + /** + *

+ * @attr description + * Alpha multiplier applied to the base color. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.memoapp:alpha + */ + public static final int ColorStateListItem_alpha=2; + /** + * Attributes that can be used with a CompoundButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.memoapp:buttonTint}Tint to apply to the button drawable.
{@link #CompoundButton_buttonTintMode com.memoapp:buttonTintMode}Blending mode used to apply the button tint.
+ * @see #CompoundButton_android_button + * @see #CompoundButton_buttonTint + * @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton={ + 0x01010107, 0x7f020046, 0x7f020047 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#button} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:button + */ + public static final int CompoundButton_android_button=0; + /** + *

+ * @attr description + * Tint to apply to the button drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:buttonTint + */ + public static final int CompoundButton_buttonTint=1; + /** + *

+ * @attr description + * Blending mode used to apply the button tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode=2; + /** + * Attributes that can be used with a CoordinatorLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_keylines com.memoapp:keylines}A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground com.memoapp:statusBarBackground}Drawable to display behind the status bar when the view is set to draw behind it.
+ * @see #CoordinatorLayout_keylines + * @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout={ + 0x7f020094, 0x7f0200ee + }; + /** + *

+ * @attr description + * A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge. + * Child views can refer to these keylines for alignment using + * layout_keyline="index" where index is a 0-based index into + * this array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:keylines + */ + public static final int CoordinatorLayout_keylines=0; + /** + *

+ * @attr description + * Drawable to display behind the status bar when the view is set to draw behind it. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground=1; + /** + * Attributes that can be used with a CoordinatorLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor com.memoapp:layout_anchor}The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity com.memoapp:layout_anchorGravity}Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior com.memoapp:layout_behavior}The class name of a Behavior class defining special runtime behavior + * for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.memoapp:layout_dodgeInsetEdges}Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge com.memoapp:layout_insetEdge}Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline com.memoapp:layout_keyline}The index of a keyline this view should position relative to.
+ * @see #CoordinatorLayout_Layout_android_layout_gravity + * @see #CoordinatorLayout_Layout_layout_anchor + * @see #CoordinatorLayout_Layout_layout_anchorGravity + * @see #CoordinatorLayout_Layout_layout_behavior + * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + * @see #CoordinatorLayout_Layout_layout_insetEdge + * @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout={ + 0x010100b3, 0x7f020097, 0x7f020098, 0x7f020099, + 0x7f02009a, 0x7f02009b, 0x7f02009c + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity=0; + /** + *

+ * @attr description + * The id of an anchor view that this view should position relative to. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor=1; + /** + *

+ * @attr description + * Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name com.memoapp:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; + /** + *

+ * @attr description + * The class name of a Behavior class defining special runtime behavior + * for this child view. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior=3; + /** + *

+ * @attr description + * Specifies how this view dodges the inset edges of the CoordinatorLayout. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ * + * @attr name com.memoapp:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; + /** + *

+ * @attr description + * Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ * + * @attr name com.memoapp:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge=5; + /** + *

+ * @attr description + * The index of a keyline this view should position relative to. + * android:layout_gravity will affect how the view aligns to the + * specified keyline. + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline=6; + /** + * Attributes that can be used with a DrawerArrowToggle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.memoapp:arrowHeadLength}The length of the arrow head when formed to make an arrow
{@link #DrawerArrowToggle_arrowShaftLength com.memoapp:arrowShaftLength}The length of the shaft when formed to make an arrow
{@link #DrawerArrowToggle_barLength com.memoapp:barLength}The length of the bars when they are parallel to each other
{@link #DrawerArrowToggle_color com.memoapp:color}The drawing color for the bars
{@link #DrawerArrowToggle_drawableSize com.memoapp:drawableSize}The total size of the drawable
{@link #DrawerArrowToggle_gapBetweenBars com.memoapp:gapBetweenBars}The max gap between the bars when they are parallel to each other
{@link #DrawerArrowToggle_spinBars com.memoapp:spinBars}Whether bars should rotate or not during transition
{@link #DrawerArrowToggle_thickness com.memoapp:thickness}The thickness (stroke size) for the bar paint
+ * @see #DrawerArrowToggle_arrowHeadLength + * @see #DrawerArrowToggle_arrowShaftLength + * @see #DrawerArrowToggle_barLength + * @see #DrawerArrowToggle_color + * @see #DrawerArrowToggle_drawableSize + * @see #DrawerArrowToggle_gapBetweenBars + * @see #DrawerArrowToggle_spinBars + * @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle={ + 0x7f02002c, 0x7f02002d, 0x7f02003a, 0x7f02004e, + 0x7f02006d, 0x7f020085, 0x7f0200e8, 0x7f020106 + }; + /** + *

+ * @attr description + * The length of the arrow head when formed to make an arrow + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength=0; + /** + *

+ * @attr description + * The length of the shaft when formed to make an arrow + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength=1; + /** + *

+ * @attr description + * The length of the bars when they are parallel to each other + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:barLength + */ + public static final int DrawerArrowToggle_barLength=2; + /** + *

+ * @attr description + * The drawing color for the bars + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:color + */ + public static final int DrawerArrowToggle_color=3; + /** + *

+ * @attr description + * The total size of the drawable + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize=4; + /** + *

+ * @attr description + * The max gap between the bars when they are parallel to each other + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars=5; + /** + *

+ * @attr description + * Whether bars should rotate or not during transition + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:spinBars + */ + public static final int DrawerArrowToggle_spinBars=6; + /** + *

+ * @attr description + * The thickness (stroke size) for the bar paint + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:thickness + */ + public static final int DrawerArrowToggle_thickness=7; + /** + * Attributes that can be used with a FontFamily. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamily_fontProviderAuthority com.memoapp:fontProviderAuthority}The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts com.memoapp:fontProviderCerts}The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy com.memoapp:fontProviderFetchStrategy}The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout com.memoapp:fontProviderFetchTimeout}The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage com.memoapp:fontProviderPackage}The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery com.memoapp:fontProviderQuery}The query to be sent over to the provider.
+ * @see #FontFamily_fontProviderAuthority + * @see #FontFamily_fontProviderCerts + * @see #FontFamily_fontProviderFetchStrategy + * @see #FontFamily_fontProviderFetchTimeout + * @see #FontFamily_fontProviderPackage + * @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily={ + 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, + 0x7f020080, 0x7f020081 + }; + /** + *

+ * @attr description + * The authority of the Font Provider to be used for the request. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority=0; + /** + *

+ * @attr description + * The sets of hashes for the certificates the provider should be signed with. This is + * used to verify the identity of the provider, and is only required if the provider is not + * part of the system image. This value may point to one list or a list of lists, where each + * individual list represents one collection of signature hashes. Refer to your font provider's + * documentation for these values. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts=1; + /** + *

+ * @attr description + * The strategy to be used when fetching font data from a font provider in XML layouts. + * This attribute is ignored when the resource is loaded from code, as it is equivalent to the + * choice of API between {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + * {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + * (async). + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requeted font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ * + * @attr name com.memoapp:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy=2; + /** + *

+ * @attr description + * The length of the timeout during fetching. + * + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ * + * @attr name com.memoapp:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout=3; + /** + *

+ * @attr description + * The package for the Font Provider to be used for the request. This is used to verify + * the identity of the provider. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage=4; + /** + *

+ * @attr description + * The query to be sent over to the provider. Refer to your font provider's documentation + * on the format of this string. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery=5; + /** + * Attributes that can be used with a FontFamilyFont. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_fontStyle android:fontStyle}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_font com.memoapp:font}The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle com.memoapp:fontStyle}The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings com.memoapp:fontVariationSettings}The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight com.memoapp:fontWeight}The weight of the given font file.
{@link #FontFamilyFont_ttcIndex com.memoapp:ttcIndex}The index of the font in the tcc font file.
+ * @see #FontFamilyFont_android_font + * @see #FontFamilyFont_android_fontWeight + * @see #FontFamilyFont_android_fontStyle + * @see #FontFamilyFont_android_ttcIndex + * @see #FontFamilyFont_android_fontVariationSettings + * @see #FontFamilyFont_font + * @see #FontFamilyFont_fontStyle + * @see #FontFamilyFont_fontVariationSettings + * @see #FontFamilyFont_fontWeight + * @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont={ + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f02007a, 0x7f020082, 0x7f020083, + 0x7f020084, 0x7f020121 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#font} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:font + */ + public static final int FontFamilyFont_android_font=0; + /** + *

This symbol is the offset where the {@link android.R.attr#fontWeight} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight=1; + /** + *

+ * @attr description + * References to the framework attrs + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#ttcIndex} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex=3; + /** + *

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings=4; + /** + *

+ * @attr description + * The reference to the font file to be used. This should be a file in the res/font folder + * and should therefore have an R reference value. E.g. @font/myfont + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:font + */ + public static final int FontFamilyFont_font=5; + /** + *

+ * @attr description + * The style of the given font file. This will be used when the font is being loaded into + * the font stack and will override any style information in the font's header tables. If + * unspecified, the value in the font's header tables will be used. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name com.memoapp:fontStyle + */ + public static final int FontFamilyFont_fontStyle=6; + /** + *

+ * @attr description + * The variation settings to be applied to the font. The string should be in the following + * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + * used, or the font used does not support variation settings, this attribute needs not be + * specified. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings=7; + /** + *

+ * @attr description + * The weight of the given font file. This will be used when the font is being loaded into + * the font stack and will override any weight information in the font's header tables. Must + * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + * in the font's header tables will be used. + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:fontWeight + */ + public static final int FontFamilyFont_fontWeight=8; + /** + *

+ * @attr description + * The index of the font in the tcc font file. If the font file referenced is not in the + * tcc format, this attribute needs not be specified. + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex=9; + /** + * Attributes that can be used with a GenericDraweeHierarchy. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #GenericDraweeHierarchy_actualImageScaleType com.memoapp:actualImageScaleType}Scale type of the actual image.
{@link #GenericDraweeHierarchy_backgroundImage com.memoapp:backgroundImage}A drawable or color to be used as a background.
{@link #GenericDraweeHierarchy_fadeDuration com.memoapp:fadeDuration}Fade duration in milliseconds.
{@link #GenericDraweeHierarchy_failureImage com.memoapp:failureImage}A drawable to be be used as a failure image.
{@link #GenericDraweeHierarchy_failureImageScaleType com.memoapp:failureImageScaleType}Scale type of the failure image.
{@link #GenericDraweeHierarchy_overlayImage com.memoapp:overlayImage}A drawable or color to be used as an overlay.
{@link #GenericDraweeHierarchy_placeholderImage com.memoapp:placeholderImage}A drawable or color to be be used as a placeholder.
{@link #GenericDraweeHierarchy_placeholderImageScaleType com.memoapp:placeholderImageScaleType}Scale type of the placeholder image.
{@link #GenericDraweeHierarchy_pressedStateOverlayImage com.memoapp:pressedStateOverlayImage}A drawable or color to be used as a pressed-state-overlay
{@link #GenericDraweeHierarchy_progressBarAutoRotateInterval com.memoapp:progressBarAutoRotateInterval}Progress bar Auto Rotate interval in milliseconds
{@link #GenericDraweeHierarchy_progressBarImage com.memoapp:progressBarImage}A drawable to be be used as a progress bar.
{@link #GenericDraweeHierarchy_progressBarImageScaleType com.memoapp:progressBarImageScaleType}Scale type of the progress bar.
{@link #GenericDraweeHierarchy_retryImage com.memoapp:retryImage}A drawable to be be used as a retry image.
{@link #GenericDraweeHierarchy_retryImageScaleType com.memoapp:retryImageScaleType}Scale type of the retry image.
{@link #GenericDraweeHierarchy_roundAsCircle com.memoapp:roundAsCircle}Round as circle.
{@link #GenericDraweeHierarchy_roundBottomEnd com.memoapp:roundBottomEnd}Round the bottom-end edge.
{@link #GenericDraweeHierarchy_roundBottomLeft com.memoapp:roundBottomLeft}Round the bottom-left corner.
{@link #GenericDraweeHierarchy_roundBottomRight com.memoapp:roundBottomRight}Round the bottom-right corner.
{@link #GenericDraweeHierarchy_roundBottomStart com.memoapp:roundBottomStart}Round the bottom-start edge.
{@link #GenericDraweeHierarchy_roundTopEnd com.memoapp:roundTopEnd}Round the top-end edge.
{@link #GenericDraweeHierarchy_roundTopLeft com.memoapp:roundTopLeft}Round the top-left corner.
{@link #GenericDraweeHierarchy_roundTopRight com.memoapp:roundTopRight}Round the top-right corner.
{@link #GenericDraweeHierarchy_roundTopStart com.memoapp:roundTopStart}Round the top-start edge.
{@link #GenericDraweeHierarchy_roundWithOverlayColor com.memoapp:roundWithOverlayColor}Round by overlying color.
{@link #GenericDraweeHierarchy_roundedCornerRadius com.memoapp:roundedCornerRadius}Rounded corner radius.
{@link #GenericDraweeHierarchy_roundingBorderColor com.memoapp:roundingBorderColor}Rounding border color
{@link #GenericDraweeHierarchy_roundingBorderPadding com.memoapp:roundingBorderPadding}Rounding border padding
{@link #GenericDraweeHierarchy_roundingBorderWidth com.memoapp:roundingBorderWidth}Rounding border width
{@link #GenericDraweeHierarchy_viewAspectRatio com.memoapp:viewAspectRatio}Aspect ratio (width / height) of the view, not necessarily of the images.
+ * @see #GenericDraweeHierarchy_actualImageScaleType + * @see #GenericDraweeHierarchy_backgroundImage + * @see #GenericDraweeHierarchy_fadeDuration + * @see #GenericDraweeHierarchy_failureImage + * @see #GenericDraweeHierarchy_failureImageScaleType + * @see #GenericDraweeHierarchy_overlayImage + * @see #GenericDraweeHierarchy_placeholderImage + * @see #GenericDraweeHierarchy_placeholderImageScaleType + * @see #GenericDraweeHierarchy_pressedStateOverlayImage + * @see #GenericDraweeHierarchy_progressBarAutoRotateInterval + * @see #GenericDraweeHierarchy_progressBarImage + * @see #GenericDraweeHierarchy_progressBarImageScaleType + * @see #GenericDraweeHierarchy_retryImage + * @see #GenericDraweeHierarchy_retryImageScaleType + * @see #GenericDraweeHierarchy_roundAsCircle + * @see #GenericDraweeHierarchy_roundBottomEnd + * @see #GenericDraweeHierarchy_roundBottomLeft + * @see #GenericDraweeHierarchy_roundBottomRight + * @see #GenericDraweeHierarchy_roundBottomStart + * @see #GenericDraweeHierarchy_roundTopEnd + * @see #GenericDraweeHierarchy_roundTopLeft + * @see #GenericDraweeHierarchy_roundTopRight + * @see #GenericDraweeHierarchy_roundTopStart + * @see #GenericDraweeHierarchy_roundWithOverlayColor + * @see #GenericDraweeHierarchy_roundedCornerRadius + * @see #GenericDraweeHierarchy_roundingBorderColor + * @see #GenericDraweeHierarchy_roundingBorderPadding + * @see #GenericDraweeHierarchy_roundingBorderWidth + * @see #GenericDraweeHierarchy_viewAspectRatio + */ + public static final int[] GenericDraweeHierarchy={ + 0x7f020023, 0x7f020035, 0x7f020076, 0x7f020077, + 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, + 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, + 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, + 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, + 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, + 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, + 0x7f020122 + }; + /** + *

+ * @attr description + * Scale type of the actual image. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:actualImageScaleType + */ + public static final int GenericDraweeHierarchy_actualImageScaleType=0; + /** + *

+ * @attr description + * A drawable or color to be used as a background. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:backgroundImage + */ + public static final int GenericDraweeHierarchy_backgroundImage=1; + /** + *

+ * @attr description + * Fade duration in milliseconds. + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:fadeDuration + */ + public static final int GenericDraweeHierarchy_fadeDuration=2; + /** + *

+ * @attr description + * A drawable to be be used as a failure image. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:failureImage + */ + public static final int GenericDraweeHierarchy_failureImage=3; + /** + *

+ * @attr description + * Scale type of the failure image. Ignored if failureImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:failureImageScaleType + */ + public static final int GenericDraweeHierarchy_failureImageScaleType=4; + /** + *

+ * @attr description + * A drawable or color to be used as an overlay. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:overlayImage + */ + public static final int GenericDraweeHierarchy_overlayImage=5; + /** + *

+ * @attr description + * A drawable or color to be be used as a placeholder. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:placeholderImage + */ + public static final int GenericDraweeHierarchy_placeholderImage=6; + /** + *

+ * @attr description + * Scale type of the placeholder image. Ignored if placeholderImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:placeholderImageScaleType + */ + public static final int GenericDraweeHierarchy_placeholderImageScaleType=7; + /** + *

+ * @attr description + * A drawable or color to be used as a pressed-state-overlay + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:pressedStateOverlayImage + */ + public static final int GenericDraweeHierarchy_pressedStateOverlayImage=8; + /** + *

+ * @attr description + * Progress bar Auto Rotate interval in milliseconds + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:progressBarAutoRotateInterval + */ + public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval=9; + /** + *

+ * @attr description + * A drawable to be be used as a progress bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:progressBarImage + */ + public static final int GenericDraweeHierarchy_progressBarImage=10; + /** + *

+ * @attr description + * Scale type of the progress bar. Ignored if progressBarImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:progressBarImageScaleType + */ + public static final int GenericDraweeHierarchy_progressBarImageScaleType=11; + /** + *

+ * @attr description + * A drawable to be be used as a retry image. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:retryImage + */ + public static final int GenericDraweeHierarchy_retryImage=12; + /** + *

+ * @attr description + * Scale type of the retry image. Ignored if retryImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:retryImageScaleType + */ + public static final int GenericDraweeHierarchy_retryImageScaleType=13; + /** + *

+ * @attr description + * Round as circle. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundAsCircle + */ + public static final int GenericDraweeHierarchy_roundAsCircle=14; + /** + *

+ * @attr description + * Round the bottom-end edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomEnd + */ + public static final int GenericDraweeHierarchy_roundBottomEnd=15; + /** + *

+ * @attr description + * Round the bottom-left corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomLeft + */ + public static final int GenericDraweeHierarchy_roundBottomLeft=16; + /** + *

+ * @attr description + * Round the bottom-right corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomRight + */ + public static final int GenericDraweeHierarchy_roundBottomRight=17; + /** + *

+ * @attr description + * Round the bottom-start edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomStart + */ + public static final int GenericDraweeHierarchy_roundBottomStart=18; + /** + *

+ * @attr description + * Round the top-end edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopEnd + */ + public static final int GenericDraweeHierarchy_roundTopEnd=19; + /** + *

+ * @attr description + * Round the top-left corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopLeft + */ + public static final int GenericDraweeHierarchy_roundTopLeft=20; + /** + *

+ * @attr description + * Round the top-right corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopRight + */ + public static final int GenericDraweeHierarchy_roundTopRight=21; + /** + *

+ * @attr description + * Round the top-start edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopStart + */ + public static final int GenericDraweeHierarchy_roundTopStart=22; + /** + *

+ * @attr description + * Round by overlying color. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:roundWithOverlayColor + */ + public static final int GenericDraweeHierarchy_roundWithOverlayColor=23; + /** + *

+ * @attr description + * Rounded corner radius. Ignored if roundAsCircle is used. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:roundedCornerRadius + */ + public static final int GenericDraweeHierarchy_roundedCornerRadius=24; + /** + *

+ * @attr description + * Rounding border color + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:roundingBorderColor + */ + public static final int GenericDraweeHierarchy_roundingBorderColor=25; + /** + *

+ * @attr description + * Rounding border padding + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:roundingBorderPadding + */ + public static final int GenericDraweeHierarchy_roundingBorderPadding=26; + /** + *

+ * @attr description + * Rounding border width + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:roundingBorderWidth + */ + public static final int GenericDraweeHierarchy_roundingBorderWidth=27; + /** + *

+ * @attr description + * Aspect ratio (width / height) of the view, not necessarily of the images. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.memoapp:viewAspectRatio + */ + public static final int GenericDraweeHierarchy_viewAspectRatio=28; + /** + * Attributes that can be used with a GradientColor. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColor_android_startColor android:startColor}
{@link #GradientColor_android_endColor android:endColor}
{@link #GradientColor_android_type android:type}
{@link #GradientColor_android_centerX android:centerX}
{@link #GradientColor_android_centerY android:centerY}
{@link #GradientColor_android_gradientRadius android:gradientRadius}
{@link #GradientColor_android_tileMode android:tileMode}
{@link #GradientColor_android_centerColor android:centerColor}
{@link #GradientColor_android_startX android:startX}
{@link #GradientColor_android_startY android:startY}
{@link #GradientColor_android_endX android:endX}
{@link #GradientColor_android_endY android:endY}
+ * @see #GradientColor_android_startColor + * @see #GradientColor_android_endColor + * @see #GradientColor_android_type + * @see #GradientColor_android_centerX + * @see #GradientColor_android_centerY + * @see #GradientColor_android_gradientRadius + * @see #GradientColor_android_tileMode + * @see #GradientColor_android_centerColor + * @see #GradientColor_android_startX + * @see #GradientColor_android_startY + * @see #GradientColor_android_endX + * @see #GradientColor_android_endY + */ + public static final int[] GradientColor={ + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** + *

+ * @attr description + * Start color of the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:startColor + */ + public static final int GradientColor_android_startColor=0; + /** + *

+ * @attr description + * End color of the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:endColor + */ + public static final int GradientColor_android_endColor=1; + /** + *

+ * @attr description + * Type of gradient. The default type is linear. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
linear0
radial1
sweep2
+ * + * @attr name android:type + */ + public static final int GradientColor_android_type=2; + /** + *

+ * @attr description + * X coordinate of the center of the gradient within the path. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerX + */ + public static final int GradientColor_android_centerX=3; + /** + *

+ * @attr description + * Y coordinate of the center of the gradient within the path. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerY + */ + public static final int GradientColor_android_centerY=4; + /** + *

+ * @attr description + * Radius of the gradient, used only with radial gradient. + * + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius=5; + /** + *

+ * @attr description + * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
clamp0
disabledffffffff
mirror2
repeat1
+ * + * @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode=6; + /** + *

+ * @attr description + * Optional center color. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor=7; + /** + *

+ * @attr description + * X coordinate of the start point origin of the gradient. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startX + */ + public static final int GradientColor_android_startX=8; + /** + *

+ * @attr description + * Y coordinate of the start point of the gradient within the shape. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startY + */ + public static final int GradientColor_android_startY=9; + /** + *

+ * @attr description + * X coordinate of the end point origin of the gradient. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endX + */ + public static final int GradientColor_android_endX=10; + /** + *

+ * @attr description + * Y coordinate of the end point of the gradient within the shape. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endY + */ + public static final int GradientColor_android_endY=11; + /** + * Attributes that can be used with a GradientColorItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColorItem_android_color android:color}
{@link #GradientColorItem_android_offset android:offset}
+ * @see #GradientColorItem_android_color + * @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem={ + 0x010101a5, 0x01010514 + }; + /** + *

+ * @attr description + * The current color for the offset inside the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int GradientColorItem_android_color=0; + /** + *

+ * @attr description + * The offset (or ratio) of this current color item inside the gradient. + * The value is only meaningful when it is between 0 and 1. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:offset + */ + public static final int GradientColorItem_android_offset=1; + /** + * Attributes that can be used with a LinearLayoutCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.memoapp:divider}Specifies the drawable used for item dividers.
{@link #LinearLayoutCompat_dividerPadding com.memoapp:dividerPadding}Size of padding on either end of a divider.
{@link #LinearLayoutCompat_measureWithLargestChild com.memoapp:measureWithLargestChild}When set to true, all children with a weight will be considered having + * the minimum size of the largest child.
{@link #LinearLayoutCompat_showDividers com.memoapp:showDividers}Setting for which dividers to show.
+ * @see #LinearLayoutCompat_android_gravity + * @see #LinearLayoutCompat_android_orientation + * @see #LinearLayoutCompat_android_baselineAligned + * @see #LinearLayoutCompat_android_baselineAlignedChildIndex + * @see #LinearLayoutCompat_android_weightSum + * @see #LinearLayoutCompat_divider + * @see #LinearLayoutCompat_dividerPadding + * @see #LinearLayoutCompat_measureWithLargestChild + * @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat={ + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f020069, 0x7f02006b, 0x7f0200ac, + 0x7f0200e4 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity=0; + /** + *

+ * @attr description + * Should the layout be a column or a row? Use "horizontal" + * for a row, "vertical" for a column. The default is + * horizontal. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation=1; + /** + *

+ * @attr description + * When set to false, prevents the layout from aligning its children's + * baselines. This attribute is particularly useful when the children + * use different values for gravity. The default value is true. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned=2; + /** + *

+ * @attr description + * When a linear layout is part of another layout that is baseline + * aligned, it can specify which of its children to baseline align to + * (that is, which child TextView). + * + *

May be an integer value, such as "100". + * + * @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; + /** + *

+ * @attr description + * Defines the maximum weight sum. If unspecified, the sum is computed + * by adding the layout_weight of all of the children. This can be + * used for instance to give a single child 50% of the total available + * space by giving it a layout_weight of 0.5 and setting the weightSum + * to 1.0. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum=4; + /** + *

+ * @attr description + * Drawable to use as a vertical divider between buttons. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:divider + */ + public static final int LinearLayoutCompat_divider=5; + /** + *

+ * @attr description + * Size of padding on either end of a divider. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding=6; + /** + *

+ * @attr description + * When set to true, all children with a weight will be considered having + * the minimum size of the largest child. If false, all children are + * measured normally. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild=7; + /** + *

+ * @attr description + * Setting for which dividers to show. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ * + * @attr name com.memoapp:showDividers + */ + public static final int LinearLayoutCompat_showDividers=8; + /** + * Attributes that can be used with a LinearLayoutCompat_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
+ * @see #LinearLayoutCompat_Layout_android_layout_gravity + * @see #LinearLayoutCompat_Layout_android_layout_width + * @see #LinearLayoutCompat_Layout_android_layout_height + * @see #LinearLayoutCompat_Layout_android_layout_weight + */ + public static final int[] LinearLayoutCompat_Layout={ + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_weight} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight=3; + /** + * Attributes that can be used with a ListPopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ * @see #ListPopupWindow_android_dropDownHorizontalOffset + * @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow={ + 0x010102ac, 0x010102ad + }; + /** + *

+ * @attr description + * Amount of pixels by which the drop down should be offset horizontally. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; + /** + *

+ * @attr description + * Amount of pixels by which the drop down should be offset vertically. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset=1; + /** + * Attributes that can be used with a MenuGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
+ * @see #MenuGroup_android_enabled + * @see #MenuGroup_android_id + * @see #MenuGroup_android_visible + * @see #MenuGroup_android_menuCategory + * @see #MenuGroup_android_orderInCategory + * @see #MenuGroup_android_checkableBehavior + */ + public static final int[] MenuGroup={ + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** + *

+ * @attr description + * Whether the items are enabled. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuGroup_android_enabled=0; + /** + *

+ * @attr description + * The ID of the group. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuGroup_android_id=1; + /** + *

+ * @attr description + * Whether the items are shown/visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuGroup_android_visible=2; + /** + *

+ * @attr description + * The category applied to all items within this group. + * (This will be or'ed with the orderInCategory attribute.) + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory=3; + /** + *

+ * @attr description + * The order within the category applied to all items within this group. + * (This will be or'ed with the category attribute.) + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory=4; + /** + *

+ * @attr description + * Whether the items are capable of displaying a check mark. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
all1
none0
single2
+ * + * @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior=5; + /** + * Attributes that can be used with a MenuItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout com.memoapp:actionLayout}An optional layout to be used as an action view.
{@link #MenuItem_actionProviderClass com.memoapp:actionProviderClass}The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item.
{@link #MenuItem_actionViewClass com.memoapp:actionViewClass}The name of an optional View class to instantiate and use as an + * action view.
{@link #MenuItem_alphabeticModifiers com.memoapp:alphabeticModifiers}The alphabetic modifier key.
{@link #MenuItem_contentDescription com.memoapp:contentDescription}The content description associated with the item.
{@link #MenuItem_iconTint com.memoapp:iconTint}Tint to apply to the icon.
{@link #MenuItem_iconTintMode com.memoapp:iconTintMode}Blending mode used to apply the icon tint.
{@link #MenuItem_numericModifiers com.memoapp:numericModifiers}The numeric modifier key.
{@link #MenuItem_showAsAction com.memoapp:showAsAction}How this item should display in the Action Bar, if present.
{@link #MenuItem_tooltipText com.memoapp:tooltipText}The tooltip text associated with the item.
+ * @see #MenuItem_android_icon + * @see #MenuItem_android_enabled + * @see #MenuItem_android_id + * @see #MenuItem_android_checked + * @see #MenuItem_android_visible + * @see #MenuItem_android_menuCategory + * @see #MenuItem_android_orderInCategory + * @see #MenuItem_android_title + * @see #MenuItem_android_titleCondensed + * @see #MenuItem_android_alphabeticShortcut + * @see #MenuItem_android_numericShortcut + * @see #MenuItem_android_checkable + * @see #MenuItem_android_onClick + * @see #MenuItem_actionLayout + * @see #MenuItem_actionProviderClass + * @see #MenuItem_actionViewClass + * @see #MenuItem_alphabeticModifiers + * @see #MenuItem_contentDescription + * @see #MenuItem_iconTint + * @see #MenuItem_iconTintMode + * @see #MenuItem_numericModifiers + * @see #MenuItem_showAsAction + * @see #MenuItem_tooltipText + */ + public static final int[] MenuItem={ + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, + 0x7f02002b, 0x7f02005a, 0x7f02008c, 0x7f02008d, + 0x7f0200b1, 0x7f0200e3, 0x7f02011d + }; + /** + *

+ * @attr description + * The icon associated with this item. This icon will not always be shown, so + * the title should be sufficient in describing this item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int MenuItem_android_icon=0; + /** + *

+ * @attr description + * Whether the item is enabled. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuItem_android_enabled=1; + /** + *

+ * @attr description + * The ID of the item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuItem_android_id=2; + /** + *

+ * @attr description + * Whether the item is checked. Note that you must first have enabled checking with + * the checkable attribute or else the check mark will not appear. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checked + */ + public static final int MenuItem_android_checked=3; + /** + *

+ * @attr description + * Whether the item is shown/visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuItem_android_visible=4; + /** + *

+ * @attr description + * The category applied to the item. + * (This will be or'ed with the orderInCategory attribute.) + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory=5; + /** + *

+ * @attr description + * The order within the category applied to the item. + * (This will be or'ed with the category attribute.) + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory=6; + /** + *

+ * @attr description + * The title associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:title + */ + public static final int MenuItem_android_title=7; + /** + *

+ * @attr description + * The condensed title associated with the item. This is used in situations where the + * normal title may be too long to be displayed. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed=8; + /** + *

+ * @attr description + * The alphabetic shortcut key. This is the shortcut when using a keyboard + * with alphabetic keys. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut=9; + /** + *

+ * @attr description + * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) + * keyboard. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut=10; + /** + *

+ * @attr description + * Whether the item is capable of displaying a check mark. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MenuItem_android_checkable=11; + /** + *

+ * @attr description + * Name of a method on the Context used to inflate the menu that will be + * called when the item is clicked. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:onClick + */ + public static final int MenuItem_android_onClick=12; + /** + *

+ * @attr description + * An optional layout to be used as an action view. + * See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actionLayout + */ + public static final int MenuItem_actionLayout=13; + /** + *

+ * @attr description + * The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item. + * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + * for more info. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:actionProviderClass + */ + public static final int MenuItem_actionProviderClass=14; + /** + *

+ * @attr description + * The name of an optional View class to instantiate and use as an + * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:actionViewClass + */ + public static final int MenuItem_actionViewClass=15; + /** + *

+ * @attr description + * The alphabetic modifier key. This is the modifier when using a keyboard + * with alphabetic keys. The values should be kept in sync with KeyEvent + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name com.memoapp:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers=16; + /** + *

+ * @attr description + * The content description associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:contentDescription + */ + public static final int MenuItem_contentDescription=17; + /** + *

+ * @attr description + * Tint to apply to the icon. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:iconTint + */ + public static final int MenuItem_iconTint=18; + /** + *

+ * @attr description + * Blending mode used to apply the icon tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:iconTintMode + */ + public static final int MenuItem_iconTintMode=19; + /** + *

+ * @attr description + * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) + * keyboard. The values should be kept in sync with KeyEvent + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name com.memoapp:numericModifiers + */ + public static final int MenuItem_numericModifiers=20; + /** + *

+ * @attr description + * How this item should display in the Action Bar, if present. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ * + * @attr name com.memoapp:showAsAction + */ + public static final int MenuItem_showAsAction=21; + /** + *

+ * @attr description + * The tooltip text associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:tooltipText + */ + public static final int MenuItem_tooltipText=22; + /** + * Attributes that can be used with a MenuView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing com.memoapp:preserveIconSpacing}Whether space should be reserved in layout when an icon is missing.
{@link #MenuView_subMenuArrow com.memoapp:subMenuArrow}Drawable for the arrow icon indicating a particular item is a submenu.
+ * @see #MenuView_android_windowAnimationStyle + * @see #MenuView_android_itemTextAppearance + * @see #MenuView_android_horizontalDivider + * @see #MenuView_android_verticalDivider + * @see #MenuView_android_headerBackground + * @see #MenuView_android_itemBackground + * @see #MenuView_android_itemIconDisabledAlpha + * @see #MenuView_preserveIconSpacing + * @see #MenuView_subMenuArrow + */ + public static final int[] MenuView={ + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0200c0, + 0x7f0200ef + }; + /** + *

+ * @attr description + * Default animations for the menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle=0; + /** + *

+ * @attr description + * Default appearance of menu item text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance=1; + /** + *

+ * @attr description + * Default horizontal divider between rows of menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider=2; + /** + *

+ * @attr description + * Default vertical divider between menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider=3; + /** + *

+ * @attr description + * Default background for the menu header. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground=4; + /** + *

+ * @attr description + * Default background for each menu item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground=5; + /** + *

+ * @attr description + * Default disabled icon alpha for each menu item that shows an icon. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha=6; + /** + *

+ * @attr description + * Whether space should be reserved in layout when an icon is missing. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing=7; + /** + *

+ * @attr description + * Drawable for the arrow icon indicating a particular item is a submenu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:subMenuArrow + */ + public static final int MenuView_subMenuArrow=8; + /** + * Attributes that can be used with a PopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor com.memoapp:overlapAnchor}Whether the popup window should overlap its anchor view.
+ * @see #PopupWindow_android_popupBackground + * @see #PopupWindow_android_popupAnimationStyle + * @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow={ + 0x01010176, 0x010102c9, 0x7f0200b2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle=1; + /** + *

+ * @attr description + * Whether the popup window should overlap its anchor view. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor=2; + /** + * Attributes that can be used with a PopupWindowBackgroundState. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.memoapp:state_above_anchor}State identifier indicating the popup will be above the anchor.
+ * @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState={ + 0x7f0200ed + }; + /** + *

+ * @attr description + * State identifier indicating the popup will be above the anchor. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor=0; + /** + * Attributes that can be used with a RecycleListView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons com.memoapp:paddingBottomNoButtons}Bottom padding to use when no buttons are present.
{@link #RecycleListView_paddingTopNoTitle com.memoapp:paddingTopNoTitle}Top padding to use when no title is present.
+ * @see #RecycleListView_paddingBottomNoButtons + * @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView={ + 0x7f0200b4, 0x7f0200b7 + }; + /** + *

+ * @attr description + * Bottom padding to use when no buttons are present. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons=0; + /** + *

+ * @attr description + * Top padding to use when no title is present. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle=1; + /** + * Attributes that can be used with a SearchView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_closeIcon com.memoapp:closeIcon}Close button icon
{@link #SearchView_commitIcon com.memoapp:commitIcon}Commit icon shown in the query suggestion row
{@link #SearchView_defaultQueryHint com.memoapp:defaultQueryHint}Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint.
{@link #SearchView_goIcon com.memoapp:goIcon}Go button icon
{@link #SearchView_iconifiedByDefault com.memoapp:iconifiedByDefault}The default state of the SearchView.
{@link #SearchView_layout com.memoapp:layout}The layout to use for the search view.
{@link #SearchView_queryBackground com.memoapp:queryBackground}Background for the section containing the search query
{@link #SearchView_queryHint com.memoapp:queryHint}An optional user-defined query hint string to be displayed in the empty query field.
{@link #SearchView_searchHintIcon com.memoapp:searchHintIcon}Search icon displayed as a text field hint
{@link #SearchView_searchIcon com.memoapp:searchIcon}Search icon
{@link #SearchView_submitBackground com.memoapp:submitBackground}Background for the section containing the action (e.g.
{@link #SearchView_suggestionRowLayout com.memoapp:suggestionRowLayout}Layout for query suggestion rows
{@link #SearchView_voiceIcon com.memoapp:voiceIcon}Voice button icon
+ * @see #SearchView_android_focusable + * @see #SearchView_android_maxWidth + * @see #SearchView_android_inputType + * @see #SearchView_android_imeOptions + * @see #SearchView_closeIcon + * @see #SearchView_commitIcon + * @see #SearchView_defaultQueryHint + * @see #SearchView_goIcon + * @see #SearchView_iconifiedByDefault + * @see #SearchView_layout + * @see #SearchView_queryBackground + * @see #SearchView_queryHint + * @see #SearchView_searchHintIcon + * @see #SearchView_searchIcon + * @see #SearchView_submitBackground + * @see #SearchView_suggestionRowLayout + * @see #SearchView_voiceIcon + */ + public static final int[] SearchView={ + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f02004a, 0x7f020059, 0x7f020064, 0x7f020086, + 0x7f02008e, 0x7f020096, 0x7f0200c7, 0x7f0200c8, + 0x7f0200dd, 0x7f0200de, 0x7f0200f0, 0x7f0200f5, + 0x7f020124 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int SearchView_android_focusable=0; + /** + *

+ * @attr description + * An optional maximum width of the SearchView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth=1; + /** + *

+ * @attr description + * The input type to set on the query text field. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
+ * + * @attr name android:inputType + */ + public static final int SearchView_android_inputType=2; + /** + *

+ * @attr description + * The IME options to set on the query text field. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
+ * + * @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions=3; + /** + *

+ * @attr description + * Close button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:closeIcon + */ + public static final int SearchView_closeIcon=4; + /** + *

+ * @attr description + * Commit icon shown in the query suggestion row + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:commitIcon + */ + public static final int SearchView_commitIcon=5; + /** + *

+ * @attr description + * Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint=6; + /** + *

+ * @attr description + * Go button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:goIcon + */ + public static final int SearchView_goIcon=7; + /** + *

+ * @attr description + * The default state of the SearchView. If true, it will be iconified when not in + * use and expanded when clicked. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault=8; + /** + *

+ * @attr description + * The layout to use for the search view. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:layout + */ + public static final int SearchView_layout=9; + /** + *

+ * @attr description + * Background for the section containing the search query + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:queryBackground + */ + public static final int SearchView_queryBackground=10; + /** + *

+ * @attr description + * An optional user-defined query hint string to be displayed in the empty query field. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:queryHint + */ + public static final int SearchView_queryHint=11; + /** + *

+ * @attr description + * Search icon displayed as a text field hint + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:searchHintIcon + */ + public static final int SearchView_searchHintIcon=12; + /** + *

+ * @attr description + * Search icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:searchIcon + */ + public static final int SearchView_searchIcon=13; + /** + *

+ * @attr description + * Background for the section containing the action (e.g. voice search) + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:submitBackground + */ + public static final int SearchView_submitBackground=14; + /** + *

+ * @attr description + * Layout for query suggestion rows + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout=15; + /** + *

+ * @attr description + * Voice button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:voiceIcon + */ + public static final int SearchView_voiceIcon=16; + /** + * Attributes that can be used with a SimpleDraweeView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SimpleDraweeView_actualImageResource com.memoapp:actualImageResource}An image reference
{@link #SimpleDraweeView_actualImageScaleType com.memoapp:actualImageScaleType}Scale type of the actual image.
{@link #SimpleDraweeView_actualImageUri com.memoapp:actualImageUri}An image uri .
{@link #SimpleDraweeView_backgroundImage com.memoapp:backgroundImage}A drawable or color to be used as a background.
{@link #SimpleDraweeView_fadeDuration com.memoapp:fadeDuration}Fade duration in milliseconds.
{@link #SimpleDraweeView_failureImage com.memoapp:failureImage}A drawable to be be used as a failure image.
{@link #SimpleDraweeView_failureImageScaleType com.memoapp:failureImageScaleType}Scale type of the failure image.
{@link #SimpleDraweeView_overlayImage com.memoapp:overlayImage}A drawable or color to be used as an overlay.
{@link #SimpleDraweeView_placeholderImage com.memoapp:placeholderImage}A drawable or color to be be used as a placeholder.
{@link #SimpleDraweeView_placeholderImageScaleType com.memoapp:placeholderImageScaleType}Scale type of the placeholder image.
{@link #SimpleDraweeView_pressedStateOverlayImage com.memoapp:pressedStateOverlayImage}A drawable or color to be used as a pressed-state-overlay
{@link #SimpleDraweeView_progressBarAutoRotateInterval com.memoapp:progressBarAutoRotateInterval}Progress bar Auto Rotate interval in milliseconds
{@link #SimpleDraweeView_progressBarImage com.memoapp:progressBarImage}A drawable to be be used as a progress bar.
{@link #SimpleDraweeView_progressBarImageScaleType com.memoapp:progressBarImageScaleType}Scale type of the progress bar.
{@link #SimpleDraweeView_retryImage com.memoapp:retryImage}A drawable to be be used as a retry image.
{@link #SimpleDraweeView_retryImageScaleType com.memoapp:retryImageScaleType}Scale type of the retry image.
{@link #SimpleDraweeView_roundAsCircle com.memoapp:roundAsCircle}Round as circle.
{@link #SimpleDraweeView_roundBottomEnd com.memoapp:roundBottomEnd}Round the bottom-end edge.
{@link #SimpleDraweeView_roundBottomLeft com.memoapp:roundBottomLeft}Round the bottom-left corner.
{@link #SimpleDraweeView_roundBottomRight com.memoapp:roundBottomRight}Round the bottom-right corner.
{@link #SimpleDraweeView_roundBottomStart com.memoapp:roundBottomStart}Round the bottom-start edge.
{@link #SimpleDraweeView_roundTopEnd com.memoapp:roundTopEnd}Round the top-end edge.
{@link #SimpleDraweeView_roundTopLeft com.memoapp:roundTopLeft}Round the top-left corner.
{@link #SimpleDraweeView_roundTopRight com.memoapp:roundTopRight}Round the top-right corner.
{@link #SimpleDraweeView_roundTopStart com.memoapp:roundTopStart}Round the top-start edge.
{@link #SimpleDraweeView_roundWithOverlayColor com.memoapp:roundWithOverlayColor}Round by overlying color.
{@link #SimpleDraweeView_roundedCornerRadius com.memoapp:roundedCornerRadius}Rounded corner radius.
{@link #SimpleDraweeView_roundingBorderColor com.memoapp:roundingBorderColor}Rounding border color
{@link #SimpleDraweeView_roundingBorderPadding com.memoapp:roundingBorderPadding}Rounding border padding
{@link #SimpleDraweeView_roundingBorderWidth com.memoapp:roundingBorderWidth}Rounding border width
{@link #SimpleDraweeView_viewAspectRatio com.memoapp:viewAspectRatio}Aspect ratio (width / height) of the view, not necessarily of the images.
+ * @see #SimpleDraweeView_actualImageResource + * @see #SimpleDraweeView_actualImageScaleType + * @see #SimpleDraweeView_actualImageUri + * @see #SimpleDraweeView_backgroundImage + * @see #SimpleDraweeView_fadeDuration + * @see #SimpleDraweeView_failureImage + * @see #SimpleDraweeView_failureImageScaleType + * @see #SimpleDraweeView_overlayImage + * @see #SimpleDraweeView_placeholderImage + * @see #SimpleDraweeView_placeholderImageScaleType + * @see #SimpleDraweeView_pressedStateOverlayImage + * @see #SimpleDraweeView_progressBarAutoRotateInterval + * @see #SimpleDraweeView_progressBarImage + * @see #SimpleDraweeView_progressBarImageScaleType + * @see #SimpleDraweeView_retryImage + * @see #SimpleDraweeView_retryImageScaleType + * @see #SimpleDraweeView_roundAsCircle + * @see #SimpleDraweeView_roundBottomEnd + * @see #SimpleDraweeView_roundBottomLeft + * @see #SimpleDraweeView_roundBottomRight + * @see #SimpleDraweeView_roundBottomStart + * @see #SimpleDraweeView_roundTopEnd + * @see #SimpleDraweeView_roundTopLeft + * @see #SimpleDraweeView_roundTopRight + * @see #SimpleDraweeView_roundTopStart + * @see #SimpleDraweeView_roundWithOverlayColor + * @see #SimpleDraweeView_roundedCornerRadius + * @see #SimpleDraweeView_roundingBorderColor + * @see #SimpleDraweeView_roundingBorderPadding + * @see #SimpleDraweeView_roundingBorderWidth + * @see #SimpleDraweeView_viewAspectRatio + */ + public static final int[] SimpleDraweeView={ + 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020035, + 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, + 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, + 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, + 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, + 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, + 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, + 0x7f0200db, 0x7f0200dc, 0x7f020122 + }; + /** + *

+ * @attr description + * An image reference + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:actualImageResource + */ + public static final int SimpleDraweeView_actualImageResource=0; + /** + *

+ * @attr description + * Scale type of the actual image. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:actualImageScaleType + */ + public static final int SimpleDraweeView_actualImageScaleType=1; + /** + *

+ * @attr description + * An image uri . + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:actualImageUri + */ + public static final int SimpleDraweeView_actualImageUri=2; + /** + *

+ * @attr description + * A drawable or color to be used as a background. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:backgroundImage + */ + public static final int SimpleDraweeView_backgroundImage=3; + /** + *

+ * @attr description + * Fade duration in milliseconds. + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:fadeDuration + */ + public static final int SimpleDraweeView_fadeDuration=4; + /** + *

+ * @attr description + * A drawable to be be used as a failure image. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:failureImage + */ + public static final int SimpleDraweeView_failureImage=5; + /** + *

+ * @attr description + * Scale type of the failure image. Ignored if failureImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:failureImageScaleType + */ + public static final int SimpleDraweeView_failureImageScaleType=6; + /** + *

+ * @attr description + * A drawable or color to be used as an overlay. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:overlayImage + */ + public static final int SimpleDraweeView_overlayImage=7; + /** + *

+ * @attr description + * A drawable or color to be be used as a placeholder. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:placeholderImage + */ + public static final int SimpleDraweeView_placeholderImage=8; + /** + *

+ * @attr description + * Scale type of the placeholder image. Ignored if placeholderImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:placeholderImageScaleType + */ + public static final int SimpleDraweeView_placeholderImageScaleType=9; + /** + *

+ * @attr description + * A drawable or color to be used as a pressed-state-overlay + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:pressedStateOverlayImage + */ + public static final int SimpleDraweeView_pressedStateOverlayImage=10; + /** + *

+ * @attr description + * Progress bar Auto Rotate interval in milliseconds + * + *

May be an integer value, such as "100". + * + * @attr name com.memoapp:progressBarAutoRotateInterval + */ + public static final int SimpleDraweeView_progressBarAutoRotateInterval=11; + /** + *

+ * @attr description + * A drawable to be be used as a progress bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:progressBarImage + */ + public static final int SimpleDraweeView_progressBarImage=12; + /** + *

+ * @attr description + * Scale type of the progress bar. Ignored if progressBarImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:progressBarImageScaleType + */ + public static final int SimpleDraweeView_progressBarImageScaleType=13; + /** + *

+ * @attr description + * A drawable to be be used as a retry image. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:retryImage + */ + public static final int SimpleDraweeView_retryImage=14; + /** + *

+ * @attr description + * Scale type of the retry image. Ignored if retryImage is not specified. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
center4
centerCrop6
centerInside5
fitBottomStart8
fitCenter2
fitEnd3
fitStart1
fitXY0
focusCrop7
noneffffffff
+ * + * @attr name com.memoapp:retryImageScaleType + */ + public static final int SimpleDraweeView_retryImageScaleType=15; + /** + *

+ * @attr description + * Round as circle. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundAsCircle + */ + public static final int SimpleDraweeView_roundAsCircle=16; + /** + *

+ * @attr description + * Round the bottom-end edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomEnd + */ + public static final int SimpleDraweeView_roundBottomEnd=17; + /** + *

+ * @attr description + * Round the bottom-left corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomLeft + */ + public static final int SimpleDraweeView_roundBottomLeft=18; + /** + *

+ * @attr description + * Round the bottom-right corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomRight + */ + public static final int SimpleDraweeView_roundBottomRight=19; + /** + *

+ * @attr description + * Round the bottom-start edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundBottomStart + */ + public static final int SimpleDraweeView_roundBottomStart=20; + /** + *

+ * @attr description + * Round the top-end edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopEnd + */ + public static final int SimpleDraweeView_roundTopEnd=21; + /** + *

+ * @attr description + * Round the top-left corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopLeft + */ + public static final int SimpleDraweeView_roundTopLeft=22; + /** + *

+ * @attr description + * Round the top-right corner. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopRight + */ + public static final int SimpleDraweeView_roundTopRight=23; + /** + *

+ * @attr description + * Round the top-start edge. Ignored if roundAsCircle is used. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:roundTopStart + */ + public static final int SimpleDraweeView_roundTopStart=24; + /** + *

+ * @attr description + * Round by overlying color. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:roundWithOverlayColor + */ + public static final int SimpleDraweeView_roundWithOverlayColor=25; + /** + *

+ * @attr description + * Rounded corner radius. Ignored if roundAsCircle is used. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:roundedCornerRadius + */ + public static final int SimpleDraweeView_roundedCornerRadius=26; + /** + *

+ * @attr description + * Rounding border color + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:roundingBorderColor + */ + public static final int SimpleDraweeView_roundingBorderColor=27; + /** + *

+ * @attr description + * Rounding border padding + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:roundingBorderPadding + */ + public static final int SimpleDraweeView_roundingBorderPadding=28; + /** + *

+ * @attr description + * Rounding border width + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:roundingBorderWidth + */ + public static final int SimpleDraweeView_roundingBorderWidth=29; + /** + *

+ * @attr description + * Aspect ratio (width / height) of the view, not necessarily of the images. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.memoapp:viewAspectRatio + */ + public static final int SimpleDraweeView_viewAspectRatio=30; + /** + * Attributes that can be used with a Spinner. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme com.memoapp:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
+ * @see #Spinner_android_entries + * @see #Spinner_android_popupBackground + * @see #Spinner_android_prompt + * @see #Spinner_android_dropDownWidth + * @see #Spinner_popupTheme + */ + public static final int[] Spinner={ + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f0200be + }; + /** + *

+ * @attr description + * Reference to an array resource that will populate the Spinner. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:entries + */ + public static final int Spinner_android_entries=0; + /** + *

+ * @attr description + * Background drawable to use for the dropdown in spinnerMode="dropdown". + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground=1; + /** + *

+ * @attr description + * The prompt to display when the spinner's dialog is shown. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:prompt + */ + public static final int Spinner_android_prompt=2; + /** + *

+ * @attr description + * Width of the dropdown in spinnerMode="dropdown". + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth=3; + /** + *

+ * @attr description + * Theme to use for the drop-down or dialog popup window. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:popupTheme + */ + public static final int Spinner_popupTheme=4; + /** + * Attributes that can be used with a StateListDrawable. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawable_android_dither android:dither}
{@link #StateListDrawable_android_visible android:visible}
{@link #StateListDrawable_android_variablePadding android:variablePadding}
{@link #StateListDrawable_android_constantSize android:constantSize}
{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}
{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}
+ * @see #StateListDrawable_android_dither + * @see #StateListDrawable_android_visible + * @see #StateListDrawable_android_variablePadding + * @see #StateListDrawable_android_constantSize + * @see #StateListDrawable_android_enterFadeDuration + * @see #StateListDrawable_android_exitFadeDuration + */ + public static final int[] StateListDrawable={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

+ * @attr description + * Enables or disables dithering of the bitmap if the bitmap does not have the + * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + * an RGB 565 screen). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int StateListDrawable_android_dither=0; + /** + *

+ * @attr description + * Indicates whether the drawable should be initially visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int StateListDrawable_android_visible=1; + /** + *

+ * @attr description + * If true, allows the drawable's padding to change based on the + * current state that is selected. If false, the padding will + * stay the same (based on the maximum padding of all the states). + * Enabling this feature requires that the owner of the drawable + * deal with performing layout when the state changes, which is + * often not supported. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int StateListDrawable_android_variablePadding=2; + /** + *

+ * @attr description + * If true, the drawable's reported internal size will remain + * constant as the state changes; the size is the maximum of all + * of the states. If false, the size will vary based on the + * current state. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int StateListDrawable_android_constantSize=3; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade in a new state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int StateListDrawable_android_enterFadeDuration=4; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade out an old state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int StateListDrawable_android_exitFadeDuration=5; + /** + * Attributes that can be used with a StateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawableItem_android_drawable android:drawable}
+ * @see #StateListDrawableItem_android_drawable + */ + public static final int[] StateListDrawableItem={ + 0x01010199 + }; + /** + *

+ * @attr description + * Reference to a drawable resource to use for the state. If not + * given, the drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int StateListDrawableItem_android_drawable=0; + /** + * Attributes that can be used with a SwitchCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.memoapp:showText}Whether to draw on/off text.
{@link #SwitchCompat_splitTrack com.memoapp:splitTrack}Whether to split the track and leave a gap for the thumb drawable.
{@link #SwitchCompat_switchMinWidth com.memoapp:switchMinWidth}Minimum width for the switch component
{@link #SwitchCompat_switchPadding com.memoapp:switchPadding}Minimum space between the switch and caption text
{@link #SwitchCompat_switchTextAppearance com.memoapp:switchTextAppearance}TextAppearance style for text displayed on the switch thumb.
{@link #SwitchCompat_thumbTextPadding com.memoapp:thumbTextPadding}Amount of padding on either side of text within the switch thumb.
{@link #SwitchCompat_thumbTint com.memoapp:thumbTint}Tint to apply to the thumb drawable.
{@link #SwitchCompat_thumbTintMode com.memoapp:thumbTintMode}Blending mode used to apply the thumb tint.
{@link #SwitchCompat_track com.memoapp:track}Drawable to use as the "track" that the switch thumb slides within.
{@link #SwitchCompat_trackTint com.memoapp:trackTint}Tint to apply to the track.
{@link #SwitchCompat_trackTintMode com.memoapp:trackTintMode}Blending mode used to apply the track tint.
+ * @see #SwitchCompat_android_textOn + * @see #SwitchCompat_android_textOff + * @see #SwitchCompat_android_thumb + * @see #SwitchCompat_showText + * @see #SwitchCompat_splitTrack + * @see #SwitchCompat_switchMinWidth + * @see #SwitchCompat_switchPadding + * @see #SwitchCompat_switchTextAppearance + * @see #SwitchCompat_thumbTextPadding + * @see #SwitchCompat_thumbTint + * @see #SwitchCompat_thumbTintMode + * @see #SwitchCompat_track + * @see #SwitchCompat_trackTint + * @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat={ + 0x01010124, 0x01010125, 0x01010142, 0x7f0200e5, + 0x7f0200eb, 0x7f0200f6, 0x7f0200f7, 0x7f0200f9, + 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02011e, + 0x7f02011f, 0x7f020120 + }; + /** + *

+ * @attr description + * Text to use when the switch is in the checked/"on" state. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn=0; + /** + *

+ * @attr description + * Text to use when the switch is in the unchecked/"off" state. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff=1; + /** + *

+ * @attr description + * Drawable to use as the "thumb" that switches back and forth. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb=2; + /** + *

+ * @attr description + * Whether to draw on/off text. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:showText + */ + public static final int SwitchCompat_showText=3; + /** + *

+ * @attr description + * Whether to split the track and leave a gap for the thumb drawable. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:splitTrack + */ + public static final int SwitchCompat_splitTrack=4; + /** + *

+ * @attr description + * Minimum width for the switch component + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth=5; + /** + *

+ * @attr description + * Minimum space between the switch and caption text + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:switchPadding + */ + public static final int SwitchCompat_switchPadding=6; + /** + *

+ * @attr description + * TextAppearance style for text displayed on the switch thumb. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance=7; + /** + *

+ * @attr description + * Amount of padding on either side of text within the switch thumb. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding=8; + /** + *

+ * @attr description + * Tint to apply to the thumb drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:thumbTint + */ + public static final int SwitchCompat_thumbTint=9; + /** + *

+ * @attr description + * Blending mode used to apply the thumb tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode=10; + /** + *

+ * @attr description + * Drawable to use as the "track" that the switch thumb slides within. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:track + */ + public static final int SwitchCompat_track=11; + /** + *

+ * @attr description + * Tint to apply to the track. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:trackTint + */ + public static final int SwitchCompat_trackTint=12; + /** + *

+ * @attr description + * Blending mode used to apply the track tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:trackTintMode + */ + public static final int SwitchCompat_trackTintMode=13; + /** + * Attributes that can be used with a TextAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_fontFamily com.memoapp:fontFamily}The attribute for the font family.
{@link #TextAppearance_textAllCaps com.memoapp:textAllCaps}Present the text in ALL CAPS.
+ * @see #TextAppearance_android_textSize + * @see #TextAppearance_android_typeface + * @see #TextAppearance_android_textStyle + * @see #TextAppearance_android_textColor + * @see #TextAppearance_android_textColorHint + * @see #TextAppearance_android_textColorLink + * @see #TextAppearance_android_shadowColor + * @see #TextAppearance_android_shadowDx + * @see #TextAppearance_android_shadowDy + * @see #TextAppearance_android_shadowRadius + * @see #TextAppearance_android_fontFamily + * @see #TextAppearance_fontFamily + * @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance={ + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f02007b, + 0x7f0200fa + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int TextAppearance_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int TextAppearance_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int TextAppearance_android_textColor=3; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorLink} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor=6; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDx} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx=7; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDy} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy=8; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius=9; + /** + *

This symbol is the offset where the {@link android.R.attr#fontFamily} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily=10; + /** + *

+ * @attr description + * The attribute for the font family. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:fontFamily + */ + public static final int TextAppearance_fontFamily=11; + /** + *

+ * @attr description + * Present the text in ALL CAPS. This may use a small-caps form when available. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.memoapp:textAllCaps + */ + public static final int TextAppearance_textAllCaps=12; + /** + * Attributes that can be used with a Toolbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity com.memoapp:buttonGravity}
{@link #Toolbar_collapseContentDescription com.memoapp:collapseContentDescription}Text to set as the content description for the collapse button.
{@link #Toolbar_collapseIcon com.memoapp:collapseIcon}Icon drawable to use for the collapse button.
{@link #Toolbar_contentInsetEnd com.memoapp:contentInsetEnd}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetEndWithActions com.memoapp:contentInsetEndWithActions}Minimum inset for content views within a bar when actions from a menu + * are present.
{@link #Toolbar_contentInsetLeft com.memoapp:contentInsetLeft}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetRight com.memoapp:contentInsetRight}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStart com.memoapp:contentInsetStart}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStartWithNavigation com.memoapp:contentInsetStartWithNavigation}Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button.
{@link #Toolbar_logo com.memoapp:logo}Specifies the drawable used for the application logo.
{@link #Toolbar_logoDescription com.memoapp:logoDescription}A content description string to describe the appearance of the + * associated logo image.
{@link #Toolbar_maxButtonHeight com.memoapp:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.memoapp:navigationContentDescription}Text to set as the content description for the navigation button + * located at the start of the toolbar.
{@link #Toolbar_navigationIcon com.memoapp:navigationIcon}Icon drawable to use for the navigation button located at + * the start of the toolbar.
{@link #Toolbar_popupTheme com.memoapp:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #Toolbar_subtitle com.memoapp:subtitle}Specifies subtitle text used for navigationMode="normal"
{@link #Toolbar_subtitleTextAppearance com.memoapp:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.memoapp:subtitleTextColor}A color to apply to the subtitle string.
{@link #Toolbar_title com.memoapp:title}
{@link #Toolbar_titleMargin com.memoapp:titleMargin}Specifies extra space on the left, start, right and end sides + * of the toolbar's title.
{@link #Toolbar_titleMarginBottom com.memoapp:titleMarginBottom}Specifies extra space on the bottom side of the toolbar's title.
{@link #Toolbar_titleMarginEnd com.memoapp:titleMarginEnd}Specifies extra space on the end side of the toolbar's title.
{@link #Toolbar_titleMarginStart com.memoapp:titleMarginStart}Specifies extra space on the start side of the toolbar's title.
{@link #Toolbar_titleMarginTop com.memoapp:titleMarginTop}Specifies extra space on the top side of the toolbar's title.
{@link #Toolbar_titleMargins com.memoapp:titleMargins}{@deprecated Use titleMargin}
{@link #Toolbar_titleTextAppearance com.memoapp:titleTextAppearance}
{@link #Toolbar_titleTextColor com.memoapp:titleTextColor}A color to apply to the title string.
+ * @see #Toolbar_android_gravity + * @see #Toolbar_android_minHeight + * @see #Toolbar_buttonGravity + * @see #Toolbar_collapseContentDescription + * @see #Toolbar_collapseIcon + * @see #Toolbar_contentInsetEnd + * @see #Toolbar_contentInsetEndWithActions + * @see #Toolbar_contentInsetLeft + * @see #Toolbar_contentInsetRight + * @see #Toolbar_contentInsetStart + * @see #Toolbar_contentInsetStartWithNavigation + * @see #Toolbar_logo + * @see #Toolbar_logoDescription + * @see #Toolbar_maxButtonHeight + * @see #Toolbar_navigationContentDescription + * @see #Toolbar_navigationIcon + * @see #Toolbar_popupTheme + * @see #Toolbar_subtitle + * @see #Toolbar_subtitleTextAppearance + * @see #Toolbar_subtitleTextColor + * @see #Toolbar_title + * @see #Toolbar_titleMargin + * @see #Toolbar_titleMarginBottom + * @see #Toolbar_titleMarginEnd + * @see #Toolbar_titleMarginStart + * @see #Toolbar_titleMarginTop + * @see #Toolbar_titleMargins + * @see #Toolbar_titleTextAppearance + * @see #Toolbar_titleTextColor + */ + @Deprecated + public static final int[] Toolbar={ + 0x010100af, 0x01010140, 0x7f020041, 0x7f02004c, + 0x7f02004d, 0x7f02005b, 0x7f02005c, 0x7f02005d, + 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f0200a9, + 0x7f0200aa, 0x7f0200ab, 0x7f0200ae, 0x7f0200af, + 0x7f0200be, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, + 0x7f02010f, 0x7f020110, 0x7f020111, 0x7f020112, + 0x7f020113, 0x7f020114, 0x7f020115, 0x7f020116, + 0x7f020117 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int Toolbar_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight=1; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#buttonGravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name com.memoapp:buttonGravity + */ + public static final int Toolbar_buttonGravity=2; + /** + *

+ * @attr description + * Text to set as the content description for the collapse button. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription=3; + /** + *

+ * @attr description + * Icon drawable to use for the collapse button. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:collapseIcon + */ + public static final int Toolbar_collapseIcon=4; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd=5; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions=6; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft=7; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetRight + */ + public static final int Toolbar_contentInsetRight=8; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetStart + */ + public static final int Toolbar_contentInsetStart=9; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation=10; + /** + *

+ * @attr description + * Drawable to set as the logo that appears at the starting side of + * the Toolbar, just after the navigation button. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:logo + */ + public static final int Toolbar_logo=11; + /** + *

+ * @attr description + * A content description string to describe the appearance of the + * associated logo image. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:logoDescription + */ + public static final int Toolbar_logoDescription=12; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#maxButtonHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight=13; + /** + *

+ * @attr description + * Text to set as the content description for the navigation button + * located at the start of the toolbar. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription=14; + /** + *

+ * @attr description + * Icon drawable to use for the navigation button located at + * the start of the toolbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:navigationIcon + */ + public static final int Toolbar_navigationIcon=15; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the toolbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:popupTheme + */ + public static final int Toolbar_popupTheme=16; + /** + *

+ * @attr description + * Specifies subtitle text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:subtitle + */ + public static final int Toolbar_subtitle=17; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#subtitleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance=18; + /** + *

+ * @attr description + * A color to apply to the subtitle string. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor=19; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#title} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.memoapp:title + */ + public static final int Toolbar_title=20; + /** + *

+ * @attr description + * Specifies extra space on the left, start, right and end sides + * of the toolbar's title. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:titleMargin + */ + public static final int Toolbar_titleMargin=21; + /** + *

+ * @attr description + * Specifies extra space on the bottom side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom=22; + /** + *

+ * @attr description + * Specifies extra space on the end side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd=23; + /** + *

+ * @attr description + * Specifies extra space on the start side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:titleMarginStart + */ + public static final int Toolbar_titleMarginStart=24; + /** + *

+ * @attr description + * Specifies extra space on the top side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:titleMarginTop + */ + public static final int Toolbar_titleMarginTop=25; + /** + *

+ * @attr description + * {@deprecated Use titleMargin} + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:titleMargins + */ + @Deprecated + public static final int Toolbar_titleMargins=26; + /** + *

This symbol is the offset where the {@link com.memoapp.R.attr#titleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance=27; + /** + *

+ * @attr description + * A color to apply to the title string. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:titleTextColor + */ + public static final int Toolbar_titleTextColor=28; + /** + * Attributes that can be used with a View. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd com.memoapp:paddingEnd}Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
{@link #View_paddingStart com.memoapp:paddingStart}Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
{@link #View_theme com.memoapp:theme}Deprecated.
+ * @see #View_android_theme + * @see #View_android_focusable + * @see #View_paddingEnd + * @see #View_paddingStart + * @see #View_theme + */ + public static final int[] View={ + 0x01010000, 0x010100da, 0x7f0200b5, 0x7f0200b6, + 0x7f020105 + }; + /** + *

+ * @attr description + * Specifies a theme override for a view. When a theme override is set, the + * view will be inflated using a {@link android.content.Context} themed with + * the specified resource. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:theme + */ + public static final int View_android_theme=0; + /** + *

+ * @attr description + * Boolean that controls whether a view can take focus. By default the user can not + * move focus to a view; by setting this attribute to true the view is + * allowed to take focus. This value does not impact the behavior of + * directly calling {@link android.view.View#requestFocus}, which will + * always request focus regardless of this view. It only impacts where + * focus navigation will try to move focus. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int View_android_focusable=1; + /** + *

+ * @attr description + * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:paddingEnd + */ + public static final int View_paddingEnd=2; + /** + *

+ * @attr description + * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.memoapp:paddingStart + */ + public static final int View_paddingStart=3; + /** + *

+ * @attr description + * Deprecated. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.memoapp:theme + */ + public static final int View_theme=4; + /** + * Attributes that can be used with a ViewBackgroundHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.memoapp:backgroundTint}Tint to apply to the background.
{@link #ViewBackgroundHelper_backgroundTintMode com.memoapp:backgroundTintMode}Blending mode used to apply the background tint.
+ * @see #ViewBackgroundHelper_android_background + * @see #ViewBackgroundHelper_backgroundTint + * @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper={ + 0x010100d4, 0x7f020038, 0x7f020039 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background=0; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.memoapp:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint=1; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name com.memoapp:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode=2; + /** + * Attributes that can be used with a ViewStubCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
+ * @see #ViewStubCompat_android_id + * @see #ViewStubCompat_android_layout + * @see #ViewStubCompat_android_inflatedId + */ + public static final int[] ViewStubCompat={ + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ViewStubCompat_android_id=0; + /** + *

+ * @attr description + * Supply an identifier for the layout resource to inflate when the ViewStub + * becomes visible or when forced to do so. The layout resource must be a + * valid reference to a layout. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int ViewStubCompat_android_layout=1; + /** + *

+ * @attr description + * Overrides the id of the inflated View with this value. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId=2; + } + public static final class xml { + public static final int rn_dev_preferences=0x7f0e0000; + } +} \ No newline at end of file diff --git a/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/webkit/androidjsc/R.java b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/webkit/androidjsc/R.java new file mode 100644 index 0000000..8010c89 --- /dev/null +++ b/MemoApp/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/webkit/androidjsc/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package org.webkit.androidjsc; + +public final class R { + private R() {} + +} diff --git a/MemoApp/android/app/build/generated/res/resValues/debug/values/generated.xml b/MemoApp/android/app/build/generated/res/resValues/debug/values/generated.xml new file mode 100644 index 0000000..d80143f --- /dev/null +++ b/MemoApp/android/app/build/generated/res/resValues/debug/values/generated.xml @@ -0,0 +1,10 @@ + + + + + + + 8081 + 8081 + + diff --git a/MemoApp/android/app/build/generated/rncli/src/main/java/com/facebook/react/PackageList.java b/MemoApp/android/app/build/generated/rncli/src/main/java/com/facebook/react/PackageList.java new file mode 100644 index 0000000..66ba416 --- /dev/null +++ b/MemoApp/android/app/build/generated/rncli/src/main/java/com/facebook/react/PackageList.java @@ -0,0 +1,62 @@ + +package com.facebook.react; + +import android.app.Application; +import android.content.Context; +import android.content.res.Resources; + +import com.facebook.react.ReactPackage; +import com.facebook.react.shell.MainPackageConfig; +import com.facebook.react.shell.MainReactPackage; +import java.util.Arrays; +import java.util.ArrayList; + + + +public class PackageList { + private Application application; + private ReactNativeHost reactNativeHost; + private MainPackageConfig mConfig; + + public PackageList(ReactNativeHost reactNativeHost) { + this(reactNativeHost, null); + } + + public PackageList(Application application) { + this(application, null); + } + + public PackageList(ReactNativeHost reactNativeHost, MainPackageConfig config) { + this.reactNativeHost = reactNativeHost; + mConfig = config; + } + + public PackageList(Application application, MainPackageConfig config) { + this.reactNativeHost = null; + this.application = application; + mConfig = config; + } + + private ReactNativeHost getReactNativeHost() { + return this.reactNativeHost; + } + + private Resources getResources() { + return this.getApplication().getResources(); + } + + private Application getApplication() { + if (this.reactNativeHost == null) return this.application; + return this.reactNativeHost.getApplication(); + } + + private Context getApplicationContext() { + return this.getApplication().getApplicationContext(); + } + + public ArrayList getPackages() { + return new ArrayList<>(Arrays.asList( + new MainReactPackage(mConfig) + )); + } +} diff --git a/MemoApp/android/app/build/generated/source/buildConfig/debug/com/memoapp/BuildConfig.java b/MemoApp/android/app/build/generated/source/buildConfig/debug/com/memoapp/BuildConfig.java new file mode 100644 index 0000000..aa845e1 --- /dev/null +++ b/MemoApp/android/app/build/generated/source/buildConfig/debug/com/memoapp/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.memoapp; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "com.memoapp"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} diff --git a/MemoApp/android/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/MemoApp/android/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/MemoApp/android/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson b/MemoApp/android/app/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson new file mode 100644 index 0000000..eaec468 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson @@ -0,0 +1 @@ +[{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/debug.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/debug.json new file mode 100644 index 0000000..28679cb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/debug.json @@ -0,0 +1,3248 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v23_values-v23.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v23\\values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sw600dp-v13_values-sw600dp-v13.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-el_values-el.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2964", + "endColumns": "100", + "endOffsets": "3060" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-xlarge-v4_values-xlarge-v4.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-xlarge-v4\\values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ne_values-ne.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2744", + "endColumns": "100", + "endOffsets": "2840" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-land_values-land.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-land\\values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-km_values-km.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-gu_values-gu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-pa_values-pa.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2961", + "endColumns": "100", + "endOffsets": "3057" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-kn_values-kn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v17_values-v17.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v17\\values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rCA_values-en-rCA.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v18_values-v18.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v18\\values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-et_values-et.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-mn_values-mn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ms_values-ms.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-hdpi-v4_values-hdpi-v4.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hdpi-v4\\values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ta_values-ta.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2953", + "endColumns": "100", + "endOffsets": "3049" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-bs_values-bs.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-large-v4_values-large-v4.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-large-v4\\values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rXC_values-en-rXC.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-hy_values-hy.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2826", + "endColumns": "100", + "endOffsets": "2922" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2872", + "endColumns": "100", + "endOffsets": "2968" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2771", + "endColumns": "100", + "endOffsets": "2867" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-af_values-af.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-si_values-si.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-mr_values-mr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-lo_values-lo.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-eu_values-eu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-gl_values-gl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-or_values-or.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2746", + "endColumns": "100", + "endOffsets": "2842" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2913", + "endColumns": "100", + "endOffsets": "3009" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-my_values-my.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-de_values-de.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2925", + "endColumns": "100", + "endOffsets": "3021" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values_values.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2e68fc3524dae3df32ece7e59db63374\\res\\values\\values.xml", + "from": { + "startLines": "2,141", + "startColumns": "4,4", + "startOffsets": "55,6070", + "endLines": "140,231", + "endColumns": "22,22", + "endOffsets": "6065,9761" + }, + "to": { + "startLines": "2750,3218", + "startColumns": "4,4", + "startOffsets": "175931,198354", + "endLines": "2888,3308", + "endColumns": "22,22", + "endOffsets": "181941,202045" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values\\values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,155,156,157,158,159,160,161,162,163,179,180,181,182,183,184,185,186,195,196,197,198,199,202,203,205,212,215,216,217,218,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,304,317,318,319,320,321,330,338,339,343,347,351,356,362,369,373,377,382,386,390,394,398,402,406,412,416,422,426,432,436,441,445,448,452,458,462,468,472,478,481,485,489,493,497,501,502,503,504,507,510,513,516,520,521,522,523,524,527,529,531,533,538,539,543,549,553,554,556,567,568,572,578,582,583,584,588,615,619,620,624,652,820,846,1015,1041,1072,1080,1086,1100,1122,1127,1132,1142,1151,1160,1164,1171,1179,1186,1187,1196,1199,1202,1206,1210,1214,1217,1218,1222,1226,1236,1241,1248,1254,1255,1258,1262,1267,1269,1271,1274,1277,1279,1283,1286,1293,1296,1299,1303,1305,1309,1311,1313,1315,1319,1327,1335,1347,1353,1362,1365,1376,1379,1384,1385,1410,1468,1527,1528,1538,1547,1548,1550,1554,1557,1560,1563,1566,1569,1572,1575,1579,1582,1585,1588,1592,1595,1599,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1637,1639,1640,1641,1642,1643,1644,1645,1646,1648,1649,1651,1652,1654,1656,1657,1659,1660,1661,1662,1663,1664,1666,1667,1668,1669,1670,1682,1684,1686,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1703,1704,1705,1706,1707,1708,1710,1714,1748,1749,1750,1751,1752,1753,1754,1755,1757,1759,1761,1763,1765,1766,1767,1768,1770,1772,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1788,1789,1790,1791,1793,1795,1796,1798,1799,1801,1803,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1818,1819,1820,1821,1823,1824,1825,1826,1827,1829,1831,1833,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1864,1947,1950,1953,1956,1970,1981,1991,2018,2025,2036,2066,2093,2102,2139,2520,2532,2657,2933,2969,2975,2981,3004,3145,3165,3171,3175,3181,3309,3321,3348,3353,3419,3434,3499,3518,3544", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "211,266,311,360,401,456,515,577,658,719,794,870,947,1025,1110,1192,1268,1344,1421,1499,1605,1711,1790,1870,1927,2048,2122,2197,2262,2328,2388,2449,2521,2594,2661,2729,2788,2847,2906,2965,3024,3078,3132,3185,3239,3293,3347,3533,3607,3686,3759,3833,3904,3976,4048,4121,4178,4236,4309,4383,4457,4532,4604,4677,4747,4818,4878,4939,5008,5077,5147,5221,5297,5361,5438,5514,5591,5656,5725,5802,5877,5946,6014,6091,6157,6218,6315,6380,6449,6548,6619,6678,6736,6793,6852,6916,6987,7059,7131,7203,7275,7342,7410,7478,7537,7600,7664,7754,7845,7905,7971,8038,8104,8174,8238,8291,8404,8462,8525,8590,8655,8730,8803,8875,8924,8985,9046,9107,9169,9233,9297,9361,9426,9489,9549,9610,9676,9735,9795,9857,9928,9988,10544,10630,10717,10807,10894,10982,11064,11147,11237,12306,12358,12416,12461,12527,12591,12648,12705,13202,13259,13307,13356,13407,13511,13558,13650,13968,14102,14166,14228,14288,14548,14622,14692,14770,14824,14894,14979,15027,15073,15144,15222,15300,15372,15446,15520,15594,15674,15747,15816,15888,15965,16026,16089,16155,16219,16290,16353,16418,16482,16543,16604,16656,16729,16803,16872,16947,17021,17095,17236,21739,22729,22807,22897,22985,23081,23601,24183,24272,24519,24800,25052,25337,25730,26207,26429,26651,26927,27154,27384,27614,27844,28074,28301,28720,28946,29371,29601,30029,30248,30531,30739,30870,31097,31523,31748,32175,32396,32821,32941,33217,33518,33842,34133,34447,34584,34715,34820,35062,35229,35433,35641,35912,36024,36136,36241,36358,36572,36718,36858,36944,37292,37380,37626,38044,38293,38375,38473,39090,39190,39442,39866,40121,40215,40304,40541,42593,42835,42937,43190,45374,56095,57611,68431,69959,71716,72342,72762,73823,75088,75344,75580,76127,76621,77226,77424,78004,78568,78943,79061,79599,79756,79952,80225,80481,80651,80792,80856,81138,81424,82100,82364,82702,83055,83149,83335,83641,83903,84028,84155,84394,84605,84724,84917,85094,85549,85730,85852,86111,86224,86411,86513,86620,86749,87024,87532,88028,88905,89199,89769,89918,90650,90822,91158,91250,92708,97052,101539,101601,102231,102845,102936,103049,103278,103438,103590,103761,103927,104096,104263,104426,104669,104839,105012,105183,105457,105656,105861,106967,107051,107147,107243,107341,107441,107543,107645,107747,107849,107951,108051,108147,108259,108388,108511,108642,108773,108871,108985,109079,109219,109353,109449,109561,109661,109777,109873,109985,110085,110225,110361,110525,110655,110813,110963,111104,111248,111383,111495,111645,111773,111901,112037,112169,112299,112429,112541,113439,113585,113729,113893,113959,114049,114125,114229,114319,114421,114529,114637,114737,114817,114909,115007,115117,115195,115301,115393,115497,115607,115729,115892,117784,117864,117964,118054,118164,118258,118364,118456,118556,118668,118782,118898,119014,119108,119222,119334,119436,119556,119678,119760,119864,119984,120110,120208,120302,120390,120502,120618,120740,120852,121027,121143,121229,121321,121433,121557,121624,121750,121818,121946,122090,122218,122287,122382,122497,122610,122709,122818,122929,123040,123141,123246,123346,123476,123567,123690,123784,123896,123982,124086,124182,124270,124388,124492,124596,124722,124810,124918,125018,125108,125218,125302,125404,125488,125542,125606,125712,125822,125906,126751,131895,132013,132128,132260,132975,133667,134184,135831,136216,136813,138412,139945,140333,142640,162158,162716,169927,184083,186096,186358,186714,187544,194326,195460,195754,195977,196304,202050,202698,204331,204601,208452,209053,212862,214077,215486", + "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,155,156,157,158,159,160,161,162,163,179,180,181,182,183,184,185,186,195,196,197,198,199,202,203,205,212,215,216,217,218,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,304,317,318,319,320,321,337,338,342,346,350,355,361,368,372,376,381,385,389,393,397,401,405,411,415,421,425,431,435,440,444,447,451,457,461,467,471,477,480,484,488,492,496,500,501,502,503,506,509,512,515,519,520,521,522,523,526,528,530,532,537,538,542,548,552,553,555,566,567,571,577,581,582,583,587,614,618,619,623,651,819,845,1014,1040,1071,1079,1085,1099,1121,1126,1131,1141,1150,1159,1163,1170,1178,1185,1186,1195,1198,1201,1205,1209,1213,1216,1217,1221,1225,1235,1240,1247,1253,1254,1257,1261,1266,1268,1270,1273,1276,1278,1282,1285,1292,1295,1298,1302,1304,1308,1310,1312,1314,1318,1326,1334,1346,1352,1361,1364,1375,1378,1383,1384,1389,1467,1526,1527,1537,1546,1547,1549,1553,1556,1559,1562,1565,1568,1571,1574,1578,1581,1584,1587,1591,1594,1598,1602,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1636,1638,1639,1640,1641,1642,1643,1644,1645,1647,1648,1650,1651,1653,1655,1656,1658,1659,1660,1661,1662,1663,1665,1666,1667,1668,1669,1670,1683,1685,1687,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1702,1703,1704,1705,1706,1707,1709,1713,1717,1748,1749,1750,1751,1752,1753,1754,1756,1758,1760,1762,1764,1765,1766,1767,1769,1771,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1792,1794,1795,1797,1798,1800,1802,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1822,1823,1824,1825,1826,1828,1830,1832,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1946,1949,1952,1955,1969,1980,1990,2017,2024,2035,2065,2092,2101,2138,2519,2524,2557,2674,2968,2974,2980,3003,3144,3164,3170,3174,3180,3217,3320,3347,3352,3418,3433,3498,3517,3543,3552", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "261,306,355,396,451,510,572,653,714,789,865,942,1020,1105,1187,1263,1339,1416,1494,1600,1706,1785,1865,1922,1980,2117,2192,2257,2323,2383,2444,2516,2589,2656,2724,2783,2842,2901,2960,3019,3073,3127,3180,3234,3288,3342,3396,3602,3681,3754,3828,3899,3971,4043,4116,4173,4231,4304,4378,4452,4527,4599,4672,4742,4813,4873,4934,5003,5072,5142,5216,5292,5356,5433,5509,5586,5651,5720,5797,5872,5941,6009,6086,6152,6213,6310,6375,6444,6543,6614,6673,6731,6788,6847,6911,6982,7054,7126,7198,7270,7337,7405,7473,7532,7595,7659,7749,7840,7900,7966,8033,8099,8169,8233,8286,8399,8457,8520,8585,8650,8725,8798,8870,8919,8980,9041,9102,9164,9228,9292,9356,9421,9484,9544,9605,9671,9730,9790,9852,9923,9983,10051,10625,10712,10802,10889,10977,11059,11142,11232,11323,12353,12411,12456,12522,12586,12643,12700,12754,13254,13302,13351,13402,13436,13553,13602,13691,13995,14161,14223,14283,14340,14617,14687,14765,14819,14889,14974,15022,15068,15139,15217,15295,15367,15441,15515,15589,15669,15742,15811,15883,15960,16021,16084,16150,16214,16285,16348,16413,16477,16538,16599,16651,16724,16798,16867,16942,17016,17090,17231,17301,21787,22802,22892,22980,23076,23166,24178,24267,24514,24795,25047,25332,25725,26202,26424,26646,26922,27149,27379,27609,27839,28069,28296,28715,28941,29366,29596,30024,30243,30526,30734,30865,31092,31518,31743,32170,32391,32816,32936,33212,33513,33837,34128,34442,34579,34710,34815,35057,35224,35428,35636,35907,36019,36131,36236,36353,36567,36713,36853,36939,37287,37375,37621,38039,38288,38370,38468,39085,39185,39437,39861,40116,40210,40299,40536,42588,42830,42932,43185,45369,56090,57606,68426,69954,71711,72337,72757,73818,75083,75339,75575,76122,76616,77221,77419,77999,78563,78938,79056,79594,79751,79947,80220,80476,80646,80787,80851,81133,81419,82095,82359,82697,83050,83144,83330,83636,83898,84023,84150,84389,84600,84719,84912,85089,85544,85725,85847,86106,86219,86406,86508,86615,86744,87019,87527,88023,88900,89194,89764,89913,90645,90817,91153,91245,91523,97047,101534,101596,102226,102840,102931,103044,103273,103433,103585,103756,103922,104091,104258,104421,104664,104834,105007,105178,105452,105651,105856,106186,107046,107142,107238,107336,107436,107538,107640,107742,107844,107946,108046,108142,108254,108383,108506,108637,108768,108866,108980,109074,109214,109348,109444,109556,109656,109772,109868,109980,110080,110220,110356,110520,110650,110808,110958,111099,111243,111378,111490,111640,111768,111896,112032,112164,112294,112424,112536,112676,113580,113724,113862,113954,114044,114120,114224,114314,114416,114524,114632,114732,114812,114904,115002,115112,115190,115296,115388,115492,115602,115724,115887,116044,117859,117959,118049,118159,118253,118359,118451,118551,118663,118777,118893,119009,119103,119217,119329,119431,119551,119673,119755,119859,119979,120105,120203,120297,120385,120497,120613,120735,120847,121022,121138,121224,121316,121428,121552,121619,121745,121813,121941,122085,122213,122282,122377,122492,122605,122704,122813,122924,123035,123136,123241,123341,123471,123562,123685,123779,123891,123977,124081,124177,124265,124383,124487,124591,124717,124805,124913,125013,125103,125213,125297,125399,125483,125537,125601,125707,125817,125901,126021,131890,132008,132123,132255,132970,133662,134179,135826,136211,136808,138407,139940,140328,142635,162153,162413,164103,170955,186091,186353,186709,187539,194321,195455,195749,195972,196299,198349,202693,204326,204596,208447,209048,212857,214072,215481,215955" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\values\\values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,71,74,77,80,83,87,91,94,97,100,103,104,105,112,119,122,125,128,134", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,163,214,262,311,359,408,458,501,555,736,809,932,1028,1117,1225,1342,1462,1582,1692,1864,1967,2074,2177,2288,2457,2625,2742,2846,2959,3067,3180,3271,3382,3551,3649,3776,3901,3996,4103,4183,4259,4332,4419,4490,4561,4639,4719,4805,4889,4961,5043,5124,5208,5285,5372,5457,5536,5611,5684,5761,5839,5912,5990,6238,6441,6632,6827,7010,7212,7418,7619,7808,8007,8194,8220,8255,8673,9051,9228,9407,9590,9955", + "endLines": "2,3,4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,70,73,76,79,82,86,90,93,96,99,102,103,104,111,118,121,124,127,133,143", + "endColumns": "62,50,47,48,47,48,49,42,53,47,72,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,12,12,10", + "endOffsets": "158,209,257,306,354,403,453,496,550,598,804,927,1023,1112,1220,1337,1457,1577,1687,1859,1962,2069,2172,2283,2452,2620,2737,2841,2954,3062,3175,3266,3377,3546,3644,3771,3896,3991,4098,4178,4254,4327,4414,4485,4556,4634,4714,4800,4884,4956,5038,5119,5203,5280,5367,5452,5531,5606,5679,5756,5834,5907,5985,6233,6436,6627,6822,7005,7207,7413,7614,7803,8002,8189,8215,8250,8668,9046,9223,9402,9585,9950,10391" + }, + "to": { + "startLines": "28,189,190,191,192,193,194,204,213,214,261,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,313,314,315,316,322,1390,1393,1396,1399,1402,1406,1603,1606,1609,1612,1688,1718,1719,1726,1733,1736,1739,1742,1854", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "1985,12907,12958,13006,13055,13103,13152,13607,14000,14054,17306,17424,17547,17643,17732,17840,17957,18077,18197,18307,18479,18582,18689,18792,18903,19072,19240,19357,19461,19574,19682,19795,19886,19997,20166,20264,20391,20516,20611,20718,20798,20874,20947,21034,21105,21176,21254,21334,21420,21504,21576,21658,21792,21876,21953,22040,22125,22204,22279,22423,22500,22578,22651,23171,91528,91731,91922,92117,92300,92502,106191,106392,106581,106780,113867,116049,116084,116502,116880,117057,117236,117419,126310", + "endLines": "28,189,190,191,192,193,194,204,213,214,261,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,313,314,315,316,325,1392,1395,1398,1401,1405,1409,1605,1608,1611,1614,1688,1718,1725,1732,1735,1738,1741,1747,1863", + "endColumns": "62,50,47,48,47,48,49,42,53,47,72,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,12,12,10", + "endOffsets": "2043,12953,13001,13050,13098,13147,13197,13645,14049,14097,17374,17542,17638,17727,17835,17952,18072,18192,18302,18474,18577,18684,18787,18898,19067,19235,19352,19456,19569,19677,19790,19881,19992,20161,20259,20386,20511,20606,20713,20793,20869,20942,21029,21100,21171,21249,21329,21415,21499,21571,21653,21734,21871,21948,22035,22120,22199,22274,22347,22495,22573,22646,22724,23414,91726,91917,92112,92295,92497,92703,106387,106576,106775,106962,113888,116079,116497,116875,117052,117231,117414,117779,126746" + } + }, + { + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\generated\\res\\resValues\\debug\\values\\generated.xml", + "from": { + "startLines": "6,7", + "startColumns": "4,4", + "startOffsets": "162,227", + "endColumns": "63,68", + "endOffsets": "221,291" + }, + "to": { + "startLines": "219,220", + "startColumns": "4,4", + "startOffsets": "14345,14409", + "endColumns": "63,68", + "endOffsets": "14404,14473" + } + }, + { + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "1", + "startColumns": "4", + "startOffsets": "16", + "endColumns": "44", + "endOffsets": "56" + }, + "to": { + "startLines": "262", + "startColumns": "4", + "startOffsets": "17379", + "endColumns": "44", + "endOffsets": "17419" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values\\values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "51,52,148,149,150,151,152,153,154,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,187,188,200,201,206,207,208,209,210,211,221,312,1671,1672,1676,1677,1681,1849,1850,2525,2675,2718,2889,2926", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "3401,3470,10056,10126,10194,10266,10336,10397,10471,11328,11389,11450,11512,11576,11638,11699,11767,11867,11927,11993,12066,12135,12192,12244,12759,12831,13441,13476,13696,13746,13807,13864,13898,13933,14478,22352,112681,112798,112999,113109,113310,126026,126098,162418,170960,173866,181946,183706", + "endLines": "51,52,148,149,150,151,152,153,154,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,187,188,200,201,206,207,208,209,210,211,221,312,1671,1675,1676,1680,1681,1849,1850,2531,2717,2749,2925,2932", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "3465,3528,10121,10189,10261,10331,10392,10466,10539,11384,11445,11507,11571,11633,11694,11762,11862,11922,11988,12061,12130,12187,12239,12301,12826,12902,13471,13506,13741,13802,13859,13893,13928,13963,14543,22418,112793,112994,113104,113305,113434,126093,126160,162711,173861,175926,183701,184078" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\7cb3bf965fb549f257feb3d32a73f3e9\\res\\values\\values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "2,1851,2558,2568", + "startColumns": "4,4,4,4", + "startOffsets": "150,126165,164108,164716", + "endLines": "2,1853,2567,2656", + "endColumns": "60,12,24,24", + "endOffsets": "206,126305,164711,169922" + } + }, + { + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\values\\styles.xml", + "from": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "54", + "endLines": "6", + "endColumns": "12", + "endOffsets": "231" + }, + "to": { + "startLines": "326", + "startColumns": "4", + "startOffsets": "23419", + "endLines": "329", + "endColumns": "12", + "endOffsets": "23596" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v25_values-v25.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v25\\values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-kk_values-kk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2863", + "endColumns": "100", + "endOffsets": "2959" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-port_values-port.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-port\\values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2901", + "endColumns": "100", + "endOffsets": "2997" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-it_values-it.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2906", + "endColumns": "100", + "endOffsets": "3002" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v21\\values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-v21\\values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,265,266,267,270", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19504,19630,19758,19930", + "endLines": "2,3,4,5,263,264,265,266,269,274", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19625,19753,19925,20263" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-bn_values-bn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-watch-v21_values-watch-v21.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-watch-v21\\values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sq_values-sq.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-az_values-az.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-da_values-da.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2844", + "endColumns": "100", + "endOffsets": "2940" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v16_values-v16.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ml_values-ml.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-h720dp-v13_values-h720dp-v13.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-h720dp-v13\\values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2909", + "endColumns": "100", + "endOffsets": "3005" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v28_values-v28.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v28\\values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-th_values-th.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2845", + "endColumns": "100", + "endOffsets": "2941" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ur_values-ur.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2921", + "endColumns": "100", + "endOffsets": "3017" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-be_values-be.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-watch-v20_values-watch-v20.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-watch-v20\\values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v22_values-v22.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v22\\values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-in_values-in.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ka_values-ka.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v24_values-v24.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v24\\values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-as_values-as.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-v26_values-v26.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v26\\values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2891", + "endColumns": "100", + "endOffsets": "2987" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-uz_values-uz.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-night-v8_values-night-v8.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-night-v8\\values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-is_values-is.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ldltr-v21_values-ldltr-v21.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ldltr-v21\\values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ky_values-ky.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-mk_values-mk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-te_values-te.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2753", + "endColumns": "100", + "endOffsets": "2849" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-es_values-es.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2924", + "endColumns": "100", + "endOffsets": "3020" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-am_values-am.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + }, + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2756", + "endColumns": "100", + "endOffsets": "2852" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-af.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-af.json new file mode 100644 index 0000000..5078fec --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-af.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-af\\values-af.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-am.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-am.json new file mode 100644 index 0000000..1a369d2 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-am.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-am\\values-am.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json new file mode 100644 index 0000000..bae83bc --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ar\\values-ar.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-as.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-as.json new file mode 100644 index 0000000..1fcc9dd --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-as.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-as\\values-as.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-az.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-az.json new file mode 100644 index 0000000..13c48eb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-az.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-az\\values-az.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000..898aa66 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-be.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-be.json new file mode 100644 index 0000000..fc3eb3d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-be.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-be\\values-be.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json new file mode 100644 index 0000000..f24bfad --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bg\\values-bg.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bn.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bn.json new file mode 100644 index 0000000..15ce55e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bn\\values-bn.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bs.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bs.json new file mode 100644 index 0000000..7e5b868 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-bs.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bs\\values-bs.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json new file mode 100644 index 0000000..1852ec9 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ca\\values-ca.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json new file mode 100644 index 0000000..508c594 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-cs\\values-cs.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2891", + "endColumns": "100", + "endOffsets": "2987" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-da.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-da.json new file mode 100644 index 0000000..c54c4a6 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-da.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-da\\values-da.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2844", + "endColumns": "100", + "endOffsets": "2940" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-de.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-de.json new file mode 100644 index 0000000..e356f04 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-de.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-de\\values-de.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2925", + "endColumns": "100", + "endOffsets": "3021" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-el.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-el.json new file mode 100644 index 0000000..6225f39 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-el.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-el\\values-el.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2964", + "endColumns": "100", + "endOffsets": "3060" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json new file mode 100644 index 0000000..40db5b0 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rAU\\values-en-rAU.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json new file mode 100644 index 0000000..1075d36 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rCA\\values-en-rCA.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json new file mode 100644 index 0000000..8fdb648 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rGB\\values-en-rGB.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json new file mode 100644 index 0000000..ef0caf0 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rIN\\values-en-rIN.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json new file mode 100644 index 0000000..c6e86b8 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rXC\\values-en-rXC.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json new file mode 100644 index 0000000..fb85b9a --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es-rUS\\values-es-rUS.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-es.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-es.json new file mode 100644 index 0000000..26c9ebe --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-es.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es\\values-es.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2924", + "endColumns": "100", + "endOffsets": "3020" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-et.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-et.json new file mode 100644 index 0000000..fce4a32 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-et.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-et\\values-et.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-eu.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-eu.json new file mode 100644 index 0000000..4356400 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-eu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-eu\\values-eu.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json new file mode 100644 index 0000000..828f93e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fa\\values-fa.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json new file mode 100644 index 0000000..02d6a2b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fi\\values-fi.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2872", + "endColumns": "100", + "endOffsets": "2968" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000..c2aa05e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr-rCA\\values-fr-rCA.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json new file mode 100644 index 0000000..333a486 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr\\values-fr.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-gl.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-gl.json new file mode 100644 index 0000000..414248f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-gl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gl\\values-gl.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-gu.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-gu.json new file mode 100644 index 0000000..5000a44 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-gu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gu\\values-gu.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json new file mode 100644 index 0000000..8de14e8 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-h720dp-v13\\values-h720dp-v13.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-h720dp-v13\\values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json new file mode 100644 index 0000000..1439170 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hdpi-v4\\values-hdpi-v4.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hdpi-v4\\values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json new file mode 100644 index 0000000..f8956c3 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hi\\values-hi.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json new file mode 100644 index 0000000..187103f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hr\\values-hr.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json new file mode 100644 index 0000000..9f5f8ef --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hu\\values-hu.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2961", + "endColumns": "100", + "endOffsets": "3057" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hy.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hy.json new file mode 100644 index 0000000..6e62ea8 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-hy.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hy\\values-hy.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-in.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-in.json new file mode 100644 index 0000000..89e8e18 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-in.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-in\\values-in.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-is.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-is.json new file mode 100644 index 0000000..f31c0ed --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-is.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-is\\values-is.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-it.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-it.json new file mode 100644 index 0000000..0b8f7a4 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-it.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-it\\values-it.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2906", + "endColumns": "100", + "endOffsets": "3002" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json new file mode 100644 index 0000000..0e6558d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-iw\\values-iw.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json new file mode 100644 index 0000000..d6d7608 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ja\\values-ja.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2771", + "endColumns": "100", + "endOffsets": "2867" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ka.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ka.json new file mode 100644 index 0000000..bcefefd --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ka.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ka\\values-ka.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-kk.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-kk.json new file mode 100644 index 0000000..c6df8d5 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-kk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kk\\values-kk.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-km.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-km.json new file mode 100644 index 0000000..405b495 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-km.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-km\\values-km.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-kn.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-kn.json new file mode 100644 index 0000000..c1b7f23 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-kn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kn\\values-kn.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json new file mode 100644 index 0000000..36fb2cb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ko\\values-ko.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2756", + "endColumns": "100", + "endOffsets": "2852" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ky.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ky.json new file mode 100644 index 0000000..12fddf1 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ky.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ky\\values-ky.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-land.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-land.json new file mode 100644 index 0000000..c32e6b8 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-land.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-land\\values-land.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-land\\values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json new file mode 100644 index 0000000..93f5336 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-large-v4\\values-large-v4.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-large-v4\\values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json new file mode 100644 index 0000000..61f2d53 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ldltr-v21\\values-ldltr-v21.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ldltr-v21\\values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lo.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lo.json new file mode 100644 index 0000000..cd28ab2 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lo.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lo\\values-lo.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json new file mode 100644 index 0000000..3f0bb26 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lt\\values-lt.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json new file mode 100644 index 0000000..0d8400b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lv\\values-lv.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mk.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mk.json new file mode 100644 index 0000000..306819f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mk\\values-mk.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ml.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ml.json new file mode 100644 index 0000000..7ea9c07 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ml.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ml\\values-ml.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mn.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mn.json new file mode 100644 index 0000000..99d3536 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mn\\values-mn.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mr.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mr.json new file mode 100644 index 0000000..79b7afc --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-mr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mr\\values-mr.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ms.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ms.json new file mode 100644 index 0000000..34149a3 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ms.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ms\\values-ms.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-my.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-my.json new file mode 100644 index 0000000..cf7ef23 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-my.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-my\\values-my.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json new file mode 100644 index 0000000..e3f64d0 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-nb\\values-nb.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2826", + "endColumns": "100", + "endOffsets": "2922" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ne.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ne.json new file mode 100644 index 0000000..a37a264 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ne.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ne\\values-ne.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json new file mode 100644 index 0000000..28ae17f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-night-v8\\values-night-v8.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-night-v8\\values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json new file mode 100644 index 0000000..741b358 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-nl\\values-nl.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2921", + "endColumns": "100", + "endOffsets": "3017" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-or.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-or.json new file mode 100644 index 0000000..559cfa0 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-or.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-or\\values-or.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pa.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pa.json new file mode 100644 index 0000000..9de573e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pa.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pa\\values-pa.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json new file mode 100644 index 0000000..9431423 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pl\\values-pl.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2909", + "endColumns": "100", + "endOffsets": "3005" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-port.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-port.json new file mode 100644 index 0000000..7cadc3d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-port.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-port\\values-port.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-port\\values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000..5e46cdf --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt-rBR\\values-pt-rBR.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000..6d7fbca --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt-rPT\\values-pt-rPT.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json new file mode 100644 index 0000000..34b1e00 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt\\values-pt.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json new file mode 100644 index 0000000..7d8b08f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ro\\values-ro.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2953", + "endColumns": "100", + "endOffsets": "3049" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json new file mode 100644 index 0000000..954d8f1 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ru\\values-ru.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2913", + "endColumns": "100", + "endOffsets": "3009" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-si.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-si.json new file mode 100644 index 0000000..2a53413 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-si.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-si\\values-si.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json new file mode 100644 index 0000000..15d7017 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sk\\values-sk.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json new file mode 100644 index 0000000..74115f6 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sl\\values-sl.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sq.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sq.json new file mode 100644 index 0000000..ad2c2a4 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sq.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sq\\values-sq.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json new file mode 100644 index 0000000..3f4fb97 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sr\\values-sr.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json new file mode 100644 index 0000000..384b7d2 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sv\\values-sv.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2863", + "endColumns": "100", + "endOffsets": "2959" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json new file mode 100644 index 0000000..a139961 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sw\\values-sw.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json new file mode 100644 index 0000000..d44326b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ta.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ta.json new file mode 100644 index 0000000..f5415e6 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ta.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ta\\values-ta.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-te.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-te.json new file mode 100644 index 0000000..e1c1644 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-te.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-te\\values-te.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-th.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-th.json new file mode 100644 index 0000000..c62265c --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-th.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-th\\values-th.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2845", + "endColumns": "100", + "endOffsets": "2941" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json new file mode 100644 index 0000000..a7433b8 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-tl\\values-tl.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json new file mode 100644 index 0000000..85d63fa --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-tr\\values-tr.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json new file mode 100644 index 0000000..c7eb48b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-uk\\values-uk.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ur.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ur.json new file mode 100644 index 0000000..4fbc2ab --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-ur.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ur\\values-ur.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-uz.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-uz.json new file mode 100644 index 0000000..a4c2d56 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-uz.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-uz\\values-uz.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json new file mode 100644 index 0000000..c4f7383 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v16\\values-v16.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json new file mode 100644 index 0000000..d9daf07 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v17\\values-v17.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v17\\values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json new file mode 100644 index 0000000..eb396ae --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v18\\values-v18.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v18\\values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json new file mode 100644 index 0000000..c851fb9 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json @@ -0,0 +1,47 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v21\\values-v21.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v21\\values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-v21\\values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,265,266,267,270", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19504,19630,19758,19930", + "endLines": "2,3,4,5,263,264,265,266,269,274", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19625,19753,19925,20263" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json new file mode 100644 index 0000000..24cb460 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v22\\values-v22.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v22\\values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json new file mode 100644 index 0000000..93cec52 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v23\\values-v23.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v23\\values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json new file mode 100644 index 0000000..092265f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v24\\values-v24.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v24\\values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json new file mode 100644 index 0000000..e1ba55d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v25\\values-v25.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v25\\values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v26.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v26.json new file mode 100644 index 0000000..79c4d83 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v26.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v26\\values-v26.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v26\\values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v28.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v28.json new file mode 100644 index 0000000..5648af0 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-v28.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v28\\values-v28.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-v28\\values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json new file mode 100644 index 0000000..4ddcd6b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-vi\\values-vi.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2901", + "endColumns": "100", + "endOffsets": "2997" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json new file mode 100644 index 0000000..e52ddd9 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-watch-v20\\values-watch-v20.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-watch-v20\\values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json new file mode 100644 index 0000000..6c9f1f8 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-watch-v21\\values-watch-v21.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-watch-v21\\values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json new file mode 100644 index 0000000..1a89795 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-xlarge-v4\\values-xlarge-v4.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-xlarge-v4\\values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000..c57de37 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rCN\\values-zh-rCN.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2744", + "endColumns": "100", + "endOffsets": "2840" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000..98c9911 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rHK\\values-zh-rHK.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2746", + "endColumns": "100", + "endOffsets": "2842" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000..ebdce36 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rTW\\values-zh-rTW.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2753", + "endColumns": "100", + "endOffsets": "2849" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json new file mode 100644 index 0000000..babeae7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zu\\values-zu.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values.json b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values.json new file mode 100644 index 0000000..895e58c --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/multi-v2/values.json @@ -0,0 +1,157 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values\\values.xml", + "map": [ + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2e68fc3524dae3df32ece7e59db63374\\res\\values\\values.xml", + "from": { + "startLines": "2,141", + "startColumns": "4,4", + "startOffsets": "55,6070", + "endLines": "140,231", + "endColumns": "22,22", + "endOffsets": "6065,9761" + }, + "to": { + "startLines": "2750,3218", + "startColumns": "4,4", + "startOffsets": "175931,198354", + "endLines": "2888,3308", + "endColumns": "22,22", + "endOffsets": "181941,202045" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\values\\values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,155,156,157,158,159,160,161,162,163,179,180,181,182,183,184,185,186,195,196,197,198,199,202,203,205,212,215,216,217,218,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,304,317,318,319,320,321,330,338,339,343,347,351,356,362,369,373,377,382,386,390,394,398,402,406,412,416,422,426,432,436,441,445,448,452,458,462,468,472,478,481,485,489,493,497,501,502,503,504,507,510,513,516,520,521,522,523,524,527,529,531,533,538,539,543,549,553,554,556,567,568,572,578,582,583,584,588,615,619,620,624,652,820,846,1015,1041,1072,1080,1086,1100,1122,1127,1132,1142,1151,1160,1164,1171,1179,1186,1187,1196,1199,1202,1206,1210,1214,1217,1218,1222,1226,1236,1241,1248,1254,1255,1258,1262,1267,1269,1271,1274,1277,1279,1283,1286,1293,1296,1299,1303,1305,1309,1311,1313,1315,1319,1327,1335,1347,1353,1362,1365,1376,1379,1384,1385,1410,1468,1527,1528,1538,1547,1548,1550,1554,1557,1560,1563,1566,1569,1572,1575,1579,1582,1585,1588,1592,1595,1599,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1637,1639,1640,1641,1642,1643,1644,1645,1646,1648,1649,1651,1652,1654,1656,1657,1659,1660,1661,1662,1663,1664,1666,1667,1668,1669,1670,1682,1684,1686,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1703,1704,1705,1706,1707,1708,1710,1714,1748,1749,1750,1751,1752,1753,1754,1755,1757,1759,1761,1763,1765,1766,1767,1768,1770,1772,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1788,1789,1790,1791,1793,1795,1796,1798,1799,1801,1803,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1818,1819,1820,1821,1823,1824,1825,1826,1827,1829,1831,1833,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1864,1947,1950,1953,1956,1970,1981,1991,2018,2025,2036,2066,2093,2102,2139,2520,2532,2657,2933,2969,2975,2981,3004,3145,3165,3171,3175,3181,3309,3321,3348,3353,3419,3434,3499,3518,3544", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "211,266,311,360,401,456,515,577,658,719,794,870,947,1025,1110,1192,1268,1344,1421,1499,1605,1711,1790,1870,1927,2048,2122,2197,2262,2328,2388,2449,2521,2594,2661,2729,2788,2847,2906,2965,3024,3078,3132,3185,3239,3293,3347,3533,3607,3686,3759,3833,3904,3976,4048,4121,4178,4236,4309,4383,4457,4532,4604,4677,4747,4818,4878,4939,5008,5077,5147,5221,5297,5361,5438,5514,5591,5656,5725,5802,5877,5946,6014,6091,6157,6218,6315,6380,6449,6548,6619,6678,6736,6793,6852,6916,6987,7059,7131,7203,7275,7342,7410,7478,7537,7600,7664,7754,7845,7905,7971,8038,8104,8174,8238,8291,8404,8462,8525,8590,8655,8730,8803,8875,8924,8985,9046,9107,9169,9233,9297,9361,9426,9489,9549,9610,9676,9735,9795,9857,9928,9988,10544,10630,10717,10807,10894,10982,11064,11147,11237,12306,12358,12416,12461,12527,12591,12648,12705,13202,13259,13307,13356,13407,13511,13558,13650,13968,14102,14166,14228,14288,14548,14622,14692,14770,14824,14894,14979,15027,15073,15144,15222,15300,15372,15446,15520,15594,15674,15747,15816,15888,15965,16026,16089,16155,16219,16290,16353,16418,16482,16543,16604,16656,16729,16803,16872,16947,17021,17095,17236,21739,22729,22807,22897,22985,23081,23601,24183,24272,24519,24800,25052,25337,25730,26207,26429,26651,26927,27154,27384,27614,27844,28074,28301,28720,28946,29371,29601,30029,30248,30531,30739,30870,31097,31523,31748,32175,32396,32821,32941,33217,33518,33842,34133,34447,34584,34715,34820,35062,35229,35433,35641,35912,36024,36136,36241,36358,36572,36718,36858,36944,37292,37380,37626,38044,38293,38375,38473,39090,39190,39442,39866,40121,40215,40304,40541,42593,42835,42937,43190,45374,56095,57611,68431,69959,71716,72342,72762,73823,75088,75344,75580,76127,76621,77226,77424,78004,78568,78943,79061,79599,79756,79952,80225,80481,80651,80792,80856,81138,81424,82100,82364,82702,83055,83149,83335,83641,83903,84028,84155,84394,84605,84724,84917,85094,85549,85730,85852,86111,86224,86411,86513,86620,86749,87024,87532,88028,88905,89199,89769,89918,90650,90822,91158,91250,92708,97052,101539,101601,102231,102845,102936,103049,103278,103438,103590,103761,103927,104096,104263,104426,104669,104839,105012,105183,105457,105656,105861,106967,107051,107147,107243,107341,107441,107543,107645,107747,107849,107951,108051,108147,108259,108388,108511,108642,108773,108871,108985,109079,109219,109353,109449,109561,109661,109777,109873,109985,110085,110225,110361,110525,110655,110813,110963,111104,111248,111383,111495,111645,111773,111901,112037,112169,112299,112429,112541,113439,113585,113729,113893,113959,114049,114125,114229,114319,114421,114529,114637,114737,114817,114909,115007,115117,115195,115301,115393,115497,115607,115729,115892,117784,117864,117964,118054,118164,118258,118364,118456,118556,118668,118782,118898,119014,119108,119222,119334,119436,119556,119678,119760,119864,119984,120110,120208,120302,120390,120502,120618,120740,120852,121027,121143,121229,121321,121433,121557,121624,121750,121818,121946,122090,122218,122287,122382,122497,122610,122709,122818,122929,123040,123141,123246,123346,123476,123567,123690,123784,123896,123982,124086,124182,124270,124388,124492,124596,124722,124810,124918,125018,125108,125218,125302,125404,125488,125542,125606,125712,125822,125906,126751,131895,132013,132128,132260,132975,133667,134184,135831,136216,136813,138412,139945,140333,142640,162158,162716,169927,184083,186096,186358,186714,187544,194326,195460,195754,195977,196304,202050,202698,204331,204601,208452,209053,212862,214077,215486", + "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,155,156,157,158,159,160,161,162,163,179,180,181,182,183,184,185,186,195,196,197,198,199,202,203,205,212,215,216,217,218,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,304,317,318,319,320,321,337,338,342,346,350,355,361,368,372,376,381,385,389,393,397,401,405,411,415,421,425,431,435,440,444,447,451,457,461,467,471,477,480,484,488,492,496,500,501,502,503,506,509,512,515,519,520,521,522,523,526,528,530,532,537,538,542,548,552,553,555,566,567,571,577,581,582,583,587,614,618,619,623,651,819,845,1014,1040,1071,1079,1085,1099,1121,1126,1131,1141,1150,1159,1163,1170,1178,1185,1186,1195,1198,1201,1205,1209,1213,1216,1217,1221,1225,1235,1240,1247,1253,1254,1257,1261,1266,1268,1270,1273,1276,1278,1282,1285,1292,1295,1298,1302,1304,1308,1310,1312,1314,1318,1326,1334,1346,1352,1361,1364,1375,1378,1383,1384,1389,1467,1526,1527,1537,1546,1547,1549,1553,1556,1559,1562,1565,1568,1571,1574,1578,1581,1584,1587,1591,1594,1598,1602,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1636,1638,1639,1640,1641,1642,1643,1644,1645,1647,1648,1650,1651,1653,1655,1656,1658,1659,1660,1661,1662,1663,1665,1666,1667,1668,1669,1670,1683,1685,1687,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1702,1703,1704,1705,1706,1707,1709,1713,1717,1748,1749,1750,1751,1752,1753,1754,1756,1758,1760,1762,1764,1765,1766,1767,1769,1771,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1792,1794,1795,1797,1798,1800,1802,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1822,1823,1824,1825,1826,1828,1830,1832,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1946,1949,1952,1955,1969,1980,1990,2017,2024,2035,2065,2092,2101,2138,2519,2524,2557,2674,2968,2974,2980,3003,3144,3164,3170,3174,3180,3217,3320,3347,3352,3418,3433,3498,3517,3543,3552", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "261,306,355,396,451,510,572,653,714,789,865,942,1020,1105,1187,1263,1339,1416,1494,1600,1706,1785,1865,1922,1980,2117,2192,2257,2323,2383,2444,2516,2589,2656,2724,2783,2842,2901,2960,3019,3073,3127,3180,3234,3288,3342,3396,3602,3681,3754,3828,3899,3971,4043,4116,4173,4231,4304,4378,4452,4527,4599,4672,4742,4813,4873,4934,5003,5072,5142,5216,5292,5356,5433,5509,5586,5651,5720,5797,5872,5941,6009,6086,6152,6213,6310,6375,6444,6543,6614,6673,6731,6788,6847,6911,6982,7054,7126,7198,7270,7337,7405,7473,7532,7595,7659,7749,7840,7900,7966,8033,8099,8169,8233,8286,8399,8457,8520,8585,8650,8725,8798,8870,8919,8980,9041,9102,9164,9228,9292,9356,9421,9484,9544,9605,9671,9730,9790,9852,9923,9983,10051,10625,10712,10802,10889,10977,11059,11142,11232,11323,12353,12411,12456,12522,12586,12643,12700,12754,13254,13302,13351,13402,13436,13553,13602,13691,13995,14161,14223,14283,14340,14617,14687,14765,14819,14889,14974,15022,15068,15139,15217,15295,15367,15441,15515,15589,15669,15742,15811,15883,15960,16021,16084,16150,16214,16285,16348,16413,16477,16538,16599,16651,16724,16798,16867,16942,17016,17090,17231,17301,21787,22802,22892,22980,23076,23166,24178,24267,24514,24795,25047,25332,25725,26202,26424,26646,26922,27149,27379,27609,27839,28069,28296,28715,28941,29366,29596,30024,30243,30526,30734,30865,31092,31518,31743,32170,32391,32816,32936,33212,33513,33837,34128,34442,34579,34710,34815,35057,35224,35428,35636,35907,36019,36131,36236,36353,36567,36713,36853,36939,37287,37375,37621,38039,38288,38370,38468,39085,39185,39437,39861,40116,40210,40299,40536,42588,42830,42932,43185,45369,56090,57606,68426,69954,71711,72337,72757,73818,75083,75339,75575,76122,76616,77221,77419,77999,78563,78938,79056,79594,79751,79947,80220,80476,80646,80787,80851,81133,81419,82095,82359,82697,83050,83144,83330,83636,83898,84023,84150,84389,84600,84719,84912,85089,85544,85725,85847,86106,86219,86406,86508,86615,86744,87019,87527,88023,88900,89194,89764,89913,90645,90817,91153,91245,91523,97047,101534,101596,102226,102840,102931,103044,103273,103433,103585,103756,103922,104091,104258,104421,104664,104834,105007,105178,105452,105651,105856,106186,107046,107142,107238,107336,107436,107538,107640,107742,107844,107946,108046,108142,108254,108383,108506,108637,108768,108866,108980,109074,109214,109348,109444,109556,109656,109772,109868,109980,110080,110220,110356,110520,110650,110808,110958,111099,111243,111378,111490,111640,111768,111896,112032,112164,112294,112424,112536,112676,113580,113724,113862,113954,114044,114120,114224,114314,114416,114524,114632,114732,114812,114904,115002,115112,115190,115296,115388,115492,115602,115724,115887,116044,117859,117959,118049,118159,118253,118359,118451,118551,118663,118777,118893,119009,119103,119217,119329,119431,119551,119673,119755,119859,119979,120105,120203,120297,120385,120497,120613,120735,120847,121022,121138,121224,121316,121428,121552,121619,121745,121813,121941,122085,122213,122282,122377,122492,122605,122704,122813,122924,123035,123136,123241,123341,123471,123562,123685,123779,123891,123977,124081,124177,124265,124383,124487,124591,124717,124805,124913,125013,125103,125213,125297,125399,125483,125537,125601,125707,125817,125901,126021,131890,132008,132123,132255,132970,133662,134179,135826,136211,136808,138407,139940,140328,142635,162153,162413,164103,170955,186091,186353,186709,187539,194321,195455,195749,195972,196299,198349,202693,204326,204596,208447,209048,212857,214072,215481,215955" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\values\\values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,71,74,77,80,83,87,91,94,97,100,103,104,105,112,119,122,125,128,134", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,163,214,262,311,359,408,458,501,555,736,809,932,1028,1117,1225,1342,1462,1582,1692,1864,1967,2074,2177,2288,2457,2625,2742,2846,2959,3067,3180,3271,3382,3551,3649,3776,3901,3996,4103,4183,4259,4332,4419,4490,4561,4639,4719,4805,4889,4961,5043,5124,5208,5285,5372,5457,5536,5611,5684,5761,5839,5912,5990,6238,6441,6632,6827,7010,7212,7418,7619,7808,8007,8194,8220,8255,8673,9051,9228,9407,9590,9955", + "endLines": "2,3,4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,70,73,76,79,82,86,90,93,96,99,102,103,104,111,118,121,124,127,133,143", + "endColumns": "62,50,47,48,47,48,49,42,53,47,72,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,12,12,10", + "endOffsets": "158,209,257,306,354,403,453,496,550,598,804,927,1023,1112,1220,1337,1457,1577,1687,1859,1962,2069,2172,2283,2452,2620,2737,2841,2954,3062,3175,3266,3377,3546,3644,3771,3896,3991,4098,4178,4254,4327,4414,4485,4556,4634,4714,4800,4884,4956,5038,5119,5203,5280,5367,5452,5531,5606,5679,5756,5834,5907,5985,6233,6436,6627,6822,7005,7207,7413,7614,7803,8002,8189,8215,8250,8668,9046,9223,9402,9585,9950,10391" + }, + "to": { + "startLines": "28,189,190,191,192,193,194,204,213,214,261,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,313,314,315,316,322,1390,1393,1396,1399,1402,1406,1603,1606,1609,1612,1688,1718,1719,1726,1733,1736,1739,1742,1854", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "1985,12907,12958,13006,13055,13103,13152,13607,14000,14054,17306,17424,17547,17643,17732,17840,17957,18077,18197,18307,18479,18582,18689,18792,18903,19072,19240,19357,19461,19574,19682,19795,19886,19997,20166,20264,20391,20516,20611,20718,20798,20874,20947,21034,21105,21176,21254,21334,21420,21504,21576,21658,21792,21876,21953,22040,22125,22204,22279,22423,22500,22578,22651,23171,91528,91731,91922,92117,92300,92502,106191,106392,106581,106780,113867,116049,116084,116502,116880,117057,117236,117419,126310", + "endLines": "28,189,190,191,192,193,194,204,213,214,261,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,313,314,315,316,325,1392,1395,1398,1401,1405,1409,1605,1608,1611,1614,1688,1718,1725,1732,1735,1738,1741,1747,1863", + "endColumns": "62,50,47,48,47,48,49,42,53,47,72,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,12,12,10", + "endOffsets": "2043,12953,13001,13050,13098,13147,13197,13645,14049,14097,17374,17542,17638,17727,17835,17952,18072,18192,18302,18474,18577,18684,18787,18898,19067,19235,19352,19456,19569,19677,19790,19881,19992,20161,20259,20386,20511,20606,20713,20793,20869,20942,21029,21100,21171,21249,21329,21415,21499,21571,21653,21734,21871,21948,22035,22120,22199,22274,22347,22495,22573,22646,22724,23414,91726,91917,92112,92295,92497,92703,106387,106576,106775,106962,113888,116079,116497,116875,117052,117231,117414,117779,126746" + } + }, + { + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\generated\\res\\resValues\\debug\\values\\generated.xml", + "from": { + "startLines": "6,7", + "startColumns": "4,4", + "startOffsets": "162,227", + "endColumns": "63,68", + "endOffsets": "221,291" + }, + "to": { + "startLines": "219,220", + "startColumns": "4,4", + "startOffsets": "14345,14409", + "endColumns": "63,68", + "endOffsets": "14404,14473" + } + }, + { + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "1", + "startColumns": "4", + "startOffsets": "16", + "endColumns": "44", + "endOffsets": "56" + }, + "to": { + "startLines": "262", + "startColumns": "4", + "startOffsets": "17379", + "endColumns": "44", + "endOffsets": "17419" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\values\\values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "51,52,148,149,150,151,152,153,154,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,187,188,200,201,206,207,208,209,210,211,221,312,1671,1672,1676,1677,1681,1849,1850,2525,2675,2718,2889,2926", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "3401,3470,10056,10126,10194,10266,10336,10397,10471,11328,11389,11450,11512,11576,11638,11699,11767,11867,11927,11993,12066,12135,12192,12244,12759,12831,13441,13476,13696,13746,13807,13864,13898,13933,14478,22352,112681,112798,112999,113109,113310,126026,126098,162418,170960,173866,181946,183706", + "endLines": "51,52,148,149,150,151,152,153,154,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,187,188,200,201,206,207,208,209,210,211,221,312,1671,1675,1676,1680,1681,1849,1850,2531,2717,2749,2925,2932", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "3465,3528,10121,10189,10261,10331,10392,10466,10539,11384,11445,11507,11571,11633,11694,11762,11862,11922,11988,12061,12130,12187,12239,12301,12826,12902,13471,13506,13741,13802,13859,13893,13928,13963,14543,22418,112793,112994,113104,113305,113434,126093,126160,162711,173861,175926,183701,184078" + } + }, + { + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\7cb3bf965fb549f257feb3d32a73f3e9\\res\\values\\values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "2,1851,2558,2568", + "startColumns": "4,4,4,4", + "startOffsets": "150,126165,164108,164716", + "endLines": "2,1853,2567,2656", + "endColumns": "60,12,24,24", + "endOffsets": "206,126305,164711,169922" + } + }, + { + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\values\\styles.xml", + "from": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "54", + "endLines": "6", + "endColumns": "12", + "endOffsets": "231" + }, + "to": { + "startLines": "326", + "startColumns": "4", + "startOffsets": "23419", + "endLines": "329", + "endColumns": "12", + "endOffsets": "23596" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/blame/res/debug/single/debug.json b/MemoApp/android/app/build/intermediates/blame/res/debug/single/debug.json new file mode 100644 index 0000000..7b45f05 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/blame/res/debug/single/debug.json @@ -0,0 +1,1618 @@ +[ + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_checkbox.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_checkbox.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_icon.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_icon.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_close_item_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_mode_close_item_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_action_bar_item_background_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_action_bar_item_background_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_simple.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi_ic_launcher.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_color_highlight_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_color_highlight_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi_ic_launcher.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_icon_background.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_icon_background.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_disable_only_material_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_select_dialog_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_select_dialog_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_content_include.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_content_include.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_search_api_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_search_api_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_out.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_fade_out.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple_overlay_action_mode.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_action.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_item_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_btn_colored_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_tick_mark_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_seekbar_tick_mark_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_vector_test.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_vector_test.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_chronometer.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_template_part_chronometer.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_radio.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_radio.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_secondary_text_material_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_menu_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_bar.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_mode_bar.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_tooltip_frame_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\tooltip_frame_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_small_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ratingbar_small_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_redbox_top_border_background.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\drawable\\redbox_top_border_background.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_go_search_api_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_go_search_api_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_track_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_seekbar_track_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23_abc_control_background_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v23\\abc_control_background_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_hint_foreground_material_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_tooltip.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_tooltip.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_top_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_cab_background_top_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\xml_rn_dev_preferences.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\xml\\rn_dev_preferences.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_dialog_material_background.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_dialog_material_background.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action_tombstone.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_action_tombstone.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_tooltip_exit.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_tooltip_exit.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_ab_back_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_ab_back_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_enter.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_popup_enter.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_default.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_default.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_hint_foreground_material_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_fade_out.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_fade_out.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_exit.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_popup_exit.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_radio_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_radio_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_dropdown_item_icons_2line.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_header_item_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_popup_menu_header_item_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_fade_in.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_fade_in.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_push_up_in.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_push_up_in.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_seek_thumb.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_seek_thumb.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_edit_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_edit_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_slide_down.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_slide_down.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v16_notification_template_custom_big.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v16\\notification_template_custom_big.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_search_url_text.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_search_url_text.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_notification_action_background.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-v21\\notification_action_background.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_material_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action_tombstone.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_action_tombstone.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_custom_big.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_template_custom_big.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_in.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_fade_in.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_btn_colored_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_tab_indicator_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_tab_indicator_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_background_cache_hint_selector_material_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_background_cache_hint_selector_material_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_dialog_title_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_dialog_title_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_background_cache_hint_selector_material_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_clear_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_clear_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_indicator_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ratingbar_indicator_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view_list_item.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi_ic_launcher_round.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher_round.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-watch-v20_abc_alert_dialog_title_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout-watch-v20\\abc_alert_dialog_title_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_icon_group.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_template_icon_group.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_edittext.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_edittext.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_switch_track.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_switch_track.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_borderless_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_material_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_button_bar_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_edittext.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_edittext.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_item_background_holo_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_title_item.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_bar_title_item.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_icon_group.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_template_icon_group.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_dev_loading_view.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\dev_loading_view.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_item_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_popup_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_shrink_fade_out_from_bottom.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi_ic_launcher.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_tooltip_frame_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\tooltip_frame_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ratingbar_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_btn_checkable.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_btn_checkable.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_bottom.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_in_bottom.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_voice_search_api_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_voice_search_api_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_secondary_text_material_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_alert_dialog_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_textfield_search_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_textfield_search_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_toolbar.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_toolbar.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_action.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_fps_view.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\fps_view.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v26_abc_screen_toolbar.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout-v26\\abc_screen_toolbar.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi_ic_launcher_round.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher_round.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_cascading_menu_item_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_cascading_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_divider_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_divider_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_activity_chooser_view.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_singlechoice_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\select_dialog_singlechoice_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_push_up_out.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_push_up_out.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_slide_up.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_slide_up.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_menu_overflow_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_menu_overflow_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_internal_bg.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_cab_background_internal_bg.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_seek_thumb.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_seek_thumb.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_redbox_item_frame.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\redbox_item_frame.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_default.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_default.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_redbox_view.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\redbox_view.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_time.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_template_part_time.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_tile_bg.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_tile_bg.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_holo_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_text_cursor_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_text_cursor_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_btn_colored_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_btn_colored_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_switch_thumb_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_switch_thumb_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi_ic_launcher_round.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher_round.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_spinner.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_spinner.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_check_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_check_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_expanded_menu_layout.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_expanded_menu_layout.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_redbox_item_title.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\redbox_item_title.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_support_simple_spinner_dropdown_item.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_list_divider_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_list_divider_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg_low.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_bg_low.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_default_mtrl_shape.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_borderless_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_borderless_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_bottom.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_out_bottom.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_spinner.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_spinner.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_btn_checkable.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_btn_checkable.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_thumb_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_seekbar_thumb_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_top.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_out_top.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_multichoice_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\select_dialog_multichoice_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_tooltip_enter.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_tooltip_enter.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_switch_track.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_switch_track.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_bg.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_colored_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_colored_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_view.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_search_view.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\switch_thumb_material_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_borderless_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi_ic_launcher.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-watch-v20_abc_dialog_material_background.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-watch-v20\\abc_dialog_material_background.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\switch_thumb_material_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_edit_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_edit_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_item_background_holo_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi_ic_launcher.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_title_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_alert_dialog_title_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_light.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_spinner_textfield_background_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_spinner_textfield_background_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_top.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_in_top.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_dark.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_holo_dark.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_up_container.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_bar_up_container.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_dialog_material_background.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_dialog_material_background.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_grow_fade_in_from_bottom.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi_ic_launcher_round.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher_round.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi_ic_launcher_round.png.flat", + "source": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher_round.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_item_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\select_dialog_item_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v21_abc_btn_colored_borderless_text_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v21\\abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + } +] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/AndroidManifest.xml b/MemoApp/android/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/AndroidManifest.xml new file mode 100644 index 0000000..e71aaaf --- /dev/null +++ b/MemoApp/android/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/AndroidManifest.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json b/MemoApp/android/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json new file mode 100644 index 0000000..faf9357 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"BUNDLE_MANIFEST"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.memoapp","split":"","minSdkVersion":"16"}}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json b/MemoApp/android/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000..bd4758b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+VmYeo_Pquz2WP8Qa_IUNIgzN18= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+VmYeo_Pquz2WP8Qa_IUNIgzN18= new file mode 100644 index 0000000..8fd6cd4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+VmYeo_Pquz2WP8Qa_IUNIgzN18= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+lNh2v5J374y56v56RjjWh52DwY= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+lNh2v5J374y56v56RjjWh52DwY= new file mode 100644 index 0000000..78ac06c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+lNh2v5J374y56v56RjjWh52DwY= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/05Pt6kc0YltEmNWY+v2P7JANZqE= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/05Pt6kc0YltEmNWY+v2P7JANZqE= new file mode 100644 index 0000000..fe4ea95 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/05Pt6kc0YltEmNWY+v2P7JANZqE= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0l8Bmt7MFmbMSpsgBsRlDf2mW5U= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0l8Bmt7MFmbMSpsgBsRlDf2mW5U= new file mode 100644 index 0000000..98c2f5a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0l8Bmt7MFmbMSpsgBsRlDf2mW5U= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2AdPa+JDHP6G2_Y5OcqrnYPTxfU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2AdPa+JDHP6G2_Y5OcqrnYPTxfU= new file mode 100644 index 0000000..87d37d1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2AdPa+JDHP6G2_Y5OcqrnYPTxfU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3KxzdWc0QTLjBr0OVFqXADiw5k0= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3KxzdWc0QTLjBr0OVFqXADiw5k0= new file mode 100644 index 0000000..dfc6b23 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3KxzdWc0QTLjBr0OVFqXADiw5k0= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4zdkuWJYb0adKTjBrcA2UQC7l1E= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4zdkuWJYb0adKTjBrcA2UQC7l1E= new file mode 100644 index 0000000..7da10ed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4zdkuWJYb0adKTjBrcA2UQC7l1E= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ABkkfO18VtPmaQw5dROEBPt3Fcg= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ABkkfO18VtPmaQw5dROEBPt3Fcg= new file mode 100644 index 0000000..98ec886 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ABkkfO18VtPmaQw5dROEBPt3Fcg= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AICy7IyyII478dJpaqySpB2yje8= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AICy7IyyII478dJpaqySpB2yje8= new file mode 100644 index 0000000..124f128 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AICy7IyyII478dJpaqySpB2yje8= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AZMOT0wQg4ehHAmQeQkw2cWSSeI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AZMOT0wQg4ehHAmQeQkw2cWSSeI= new file mode 100644 index 0000000..ffb61da Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AZMOT0wQg4ehHAmQeQkw2cWSSeI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AdY8RaI1JXGvnT4eXsIBYso684A= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AdY8RaI1JXGvnT4eXsIBYso684A= new file mode 100644 index 0000000..45189c1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AdY8RaI1JXGvnT4eXsIBYso684A= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CCaTS8SWAaQB5FAXgKJlzHgJgQU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CCaTS8SWAaQB5FAXgKJlzHgJgQU= new file mode 100644 index 0000000..71460a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CCaTS8SWAaQB5FAXgKJlzHgJgQU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ck3ed6FxzU29fwGXq5T9fyGVKVs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ck3ed6FxzU29fwGXq5T9fyGVKVs= new file mode 100644 index 0000000..01ac441 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ck3ed6FxzU29fwGXq5T9fyGVKVs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CwA4chdrjBMyUaOoKyXI9NPfEjM= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CwA4chdrjBMyUaOoKyXI9NPfEjM= new file mode 100644 index 0000000..c42746e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CwA4chdrjBMyUaOoKyXI9NPfEjM= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DP2mdZypA_yxYNoHI7MTd5qUQIU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DP2mdZypA_yxYNoHI7MTd5qUQIU= new file mode 100644 index 0000000..7eb6252 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DP2mdZypA_yxYNoHI7MTd5qUQIU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EMxWUo3PF0LcBzGxJrWqfGJLLrk= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EMxWUo3PF0LcBzGxJrWqfGJLLrk= new file mode 100644 index 0000000..3811651 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EMxWUo3PF0LcBzGxJrWqfGJLLrk= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EdS1KvgVnIcaCyaRA3XrqbCBQR4= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EdS1KvgVnIcaCyaRA3XrqbCBQR4= new file mode 100644 index 0000000..30185e4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EdS1KvgVnIcaCyaRA3XrqbCBQR4= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EfuSnjS2MIUFkr9P1dbyoM+Tbio= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EfuSnjS2MIUFkr9P1dbyoM+Tbio= new file mode 100644 index 0000000..6bc70af Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EfuSnjS2MIUFkr9P1dbyoM+Tbio= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KJno4uI8q5kktFkyJLLPk3QAbpg= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KJno4uI8q5kktFkyJLLPk3QAbpg= new file mode 100644 index 0000000..2d8d670 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KJno4uI8q5kktFkyJLLPk3QAbpg= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MXMHdXWsrw_WZNSlQE4wNLfMp6U= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MXMHdXWsrw_WZNSlQE4wNLfMp6U= new file mode 100644 index 0000000..d4118d6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MXMHdXWsrw_WZNSlQE4wNLfMp6U= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MepoSHNOjDnq6ERVPlyb6RHW6Gs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MepoSHNOjDnq6ERVPlyb6RHW6Gs= new file mode 100644 index 0000000..d05d5f7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MepoSHNOjDnq6ERVPlyb6RHW6Gs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MiDLVOg5KQjz0l1r7rgLzn8Xz7Q= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MiDLVOg5KQjz0l1r7rgLzn8Xz7Q= new file mode 100644 index 0000000..dc7b90e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MiDLVOg5KQjz0l1r7rgLzn8Xz7Q= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PIasTeHxSph7enFyqnjLP4G0sUQ= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PIasTeHxSph7enFyqnjLP4G0sUQ= new file mode 100644 index 0000000..5b0de3f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PIasTeHxSph7enFyqnjLP4G0sUQ= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/R+kQ6vGwTLVeM9YK6nJvKSY5ako= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/R+kQ6vGwTLVeM9YK6nJvKSY5ako= new file mode 100644 index 0000000..6c3f095 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/R+kQ6vGwTLVeM9YK6nJvKSY5ako= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SP_DA692HXM5z7Od2HhzunmSGfk= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SP_DA692HXM5z7Od2HhzunmSGfk= new file mode 100644 index 0000000..6ccda32 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SP_DA692HXM5z7Od2HhzunmSGfk= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T0ZOSZdDyLfoF+w+kpzSG0+aFXU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T0ZOSZdDyLfoF+w+kpzSG0+aFXU= new file mode 100644 index 0000000..c3eef53 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T0ZOSZdDyLfoF+w+kpzSG0+aFXU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TUrSF9Lh07+qfXo+Zslldl9z3wI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TUrSF9Lh07+qfXo+Zslldl9z3wI= new file mode 100644 index 0000000..22a6ffc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TUrSF9Lh07+qfXo+Zslldl9z3wI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TfiyDUnkvBxAp2nFTsxLnksUAn4= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TfiyDUnkvBxAp2nFTsxLnksUAn4= new file mode 100644 index 0000000..8568b5b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TfiyDUnkvBxAp2nFTsxLnksUAn4= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UWOF6Id32y9gszHKHnj8cL0No_s= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UWOF6Id32y9gszHKHnj8cL0No_s= new file mode 100644 index 0000000..b2a9d0b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UWOF6Id32y9gszHKHnj8cL0No_s= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WhHFAB5RNGrAqMsNVH6WucnCwrA= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WhHFAB5RNGrAqMsNVH6WucnCwrA= new file mode 100644 index 0000000..de755d1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WhHFAB5RNGrAqMsNVH6WucnCwrA= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YUKflHqkcAqYTpvZMmc7xPOWsyU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YUKflHqkcAqYTpvZMmc7xPOWsyU= new file mode 100644 index 0000000..730ca54 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YUKflHqkcAqYTpvZMmc7xPOWsyU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Z4QaAB7umWPofYR4An5s1KNtZPA= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Z4QaAB7umWPofYR4An5s1KNtZPA= new file mode 100644 index 0000000..9ec364b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Z4QaAB7umWPofYR4An5s1KNtZPA= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMR+PSAm7ZRILmyXFDQuaki5Nqc= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMR+PSAm7ZRILmyXFDQuaki5Nqc= new file mode 100644 index 0000000..2cec677 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMR+PSAm7ZRILmyXFDQuaki5Nqc= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aF8_oIqePFsXcVixYoqXTAcQJyk= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aF8_oIqePFsXcVixYoqXTAcQJyk= new file mode 100644 index 0000000..5850599 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aF8_oIqePFsXcVixYoqXTAcQJyk= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dUK7JZ3NMEuy1CXSZzljenqAxBM= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dUK7JZ3NMEuy1CXSZzljenqAxBM= new file mode 100644 index 0000000..189e23f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dUK7JZ3NMEuy1CXSZzljenqAxBM= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dUZ1gX3zryxhBCrBITHyqFgQKz8= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dUZ1gX3zryxhBCrBITHyqFgQKz8= new file mode 100644 index 0000000..d0a17a9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dUZ1gX3zryxhBCrBITHyqFgQKz8= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/f60rb5PcmPqEnjEqNIJ615gkOdQ= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/f60rb5PcmPqEnjEqNIJ615gkOdQ= new file mode 100644 index 0000000..b2e1806 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/f60rb5PcmPqEnjEqNIJ615gkOdQ= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kqZ0W_W63aDXe5IpttfPF4qOh9o= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kqZ0W_W63aDXe5IpttfPF4qOh9o= new file mode 100644 index 0000000..acf8963 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kqZ0W_W63aDXe5IpttfPF4qOh9o= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lMPc37Lp2hwTAK6vE+2DDgQMGHs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lMPc37Lp2hwTAK6vE+2DDgQMGHs= new file mode 100644 index 0000000..f65e4a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lMPc37Lp2hwTAK6vE+2DDgQMGHs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rHWHQ4UPti8zwlrxN_X+5dcg9gI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rHWHQ4UPti8zwlrxN_X+5dcg9gI= new file mode 100644 index 0000000..33a6966 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rHWHQ4UPti8zwlrxN_X+5dcg9gI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rTpb44sD0NE60DWd1NB7AfGlC5o= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rTpb44sD0NE60DWd1NB7AfGlC5o= new file mode 100644 index 0000000..ab8ab73 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rTpb44sD0NE60DWd1NB7AfGlC5o= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rdkxgRfjDFSa4V2tGAexkbogykc= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rdkxgRfjDFSa4V2tGAexkbogykc= new file mode 100644 index 0000000..59222d9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rdkxgRfjDFSa4V2tGAexkbogykc= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sGXDPfK+RMvY9s2vSaf9ShV1BJI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sGXDPfK+RMvY9s2vSaf9ShV1BJI= new file mode 100644 index 0000000..5707aa8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sGXDPfK+RMvY9s2vSaf9ShV1BJI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uW37zXpBRP14f7Lz5TZoF2THc6M= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uW37zXpBRP14f7Lz5TZoF2THc6M= new file mode 100644 index 0000000..25e1933 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uW37zXpBRP14f7Lz5TZoF2THc6M= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vkf_3HmOpTSaNq7LvsqeGudeWNs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vkf_3HmOpTSaNq7LvsqeGudeWNs= new file mode 100644 index 0000000..846dea1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vkf_3HmOpTSaNq7LvsqeGudeWNs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/w+JOfbs1LOsz7V3N450XcRcuKQM= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/w+JOfbs1LOsz7V3N450XcRcuKQM= new file mode 100644 index 0000000..5039eb8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/w+JOfbs1LOsz7V3N450XcRcuKQM= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wgcicgfMOW9SVrM2VBF0SddzSLA= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wgcicgfMOW9SVrM2VBF0SddzSLA= new file mode 100644 index 0000000..ca57af2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wgcicgfMOW9SVrM2VBF0SddzSLA= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ytjHvTdI71nOXpjMY+RoY3D9SW4= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ytjHvTdI71nOXpjMY+RoY3D9SW4= new file mode 100644 index 0000000..144d863 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ytjHvTdI71nOXpjMY+RoY3D9SW4= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state new file mode 100644 index 0000000..4ca184b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+VmYeo_Pquz2WP8Qa_IUNIgzN18= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+VmYeo_Pquz2WP8Qa_IUNIgzN18= new file mode 100644 index 0000000..8fd6cd4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+VmYeo_Pquz2WP8Qa_IUNIgzN18= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+lNh2v5J374y56v56RjjWh52DwY= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+lNh2v5J374y56v56RjjWh52DwY= new file mode 100644 index 0000000..78ac06c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+lNh2v5J374y56v56RjjWh52DwY= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/05Pt6kc0YltEmNWY+v2P7JANZqE= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/05Pt6kc0YltEmNWY+v2P7JANZqE= new file mode 100644 index 0000000..fe4ea95 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/05Pt6kc0YltEmNWY+v2P7JANZqE= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/0l8Bmt7MFmbMSpsgBsRlDf2mW5U= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/0l8Bmt7MFmbMSpsgBsRlDf2mW5U= new file mode 100644 index 0000000..98c2f5a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/0l8Bmt7MFmbMSpsgBsRlDf2mW5U= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/2AdPa+JDHP6G2_Y5OcqrnYPTxfU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/2AdPa+JDHP6G2_Y5OcqrnYPTxfU= new file mode 100644 index 0000000..87d37d1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/2AdPa+JDHP6G2_Y5OcqrnYPTxfU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/3KxzdWc0QTLjBr0OVFqXADiw5k0= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/3KxzdWc0QTLjBr0OVFqXADiw5k0= new file mode 100644 index 0000000..dfc6b23 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/3KxzdWc0QTLjBr0OVFqXADiw5k0= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/4zdkuWJYb0adKTjBrcA2UQC7l1E= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/4zdkuWJYb0adKTjBrcA2UQC7l1E= new file mode 100644 index 0000000..7da10ed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/4zdkuWJYb0adKTjBrcA2UQC7l1E= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ABkkfO18VtPmaQw5dROEBPt3Fcg= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ABkkfO18VtPmaQw5dROEBPt3Fcg= new file mode 100644 index 0000000..98ec886 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ABkkfO18VtPmaQw5dROEBPt3Fcg= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AICy7IyyII478dJpaqySpB2yje8= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AICy7IyyII478dJpaqySpB2yje8= new file mode 100644 index 0000000..124f128 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AICy7IyyII478dJpaqySpB2yje8= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AZMOT0wQg4ehHAmQeQkw2cWSSeI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AZMOT0wQg4ehHAmQeQkw2cWSSeI= new file mode 100644 index 0000000..ffb61da Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AZMOT0wQg4ehHAmQeQkw2cWSSeI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AdY8RaI1JXGvnT4eXsIBYso684A= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AdY8RaI1JXGvnT4eXsIBYso684A= new file mode 100644 index 0000000..45189c1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/AdY8RaI1JXGvnT4eXsIBYso684A= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CCaTS8SWAaQB5FAXgKJlzHgJgQU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CCaTS8SWAaQB5FAXgKJlzHgJgQU= new file mode 100644 index 0000000..71460a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CCaTS8SWAaQB5FAXgKJlzHgJgQU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Ck3ed6FxzU29fwGXq5T9fyGVKVs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Ck3ed6FxzU29fwGXq5T9fyGVKVs= new file mode 100644 index 0000000..01ac441 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Ck3ed6FxzU29fwGXq5T9fyGVKVs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CwA4chdrjBMyUaOoKyXI9NPfEjM= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CwA4chdrjBMyUaOoKyXI9NPfEjM= new file mode 100644 index 0000000..c42746e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CwA4chdrjBMyUaOoKyXI9NPfEjM= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DP2mdZypA_yxYNoHI7MTd5qUQIU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DP2mdZypA_yxYNoHI7MTd5qUQIU= new file mode 100644 index 0000000..7eb6252 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DP2mdZypA_yxYNoHI7MTd5qUQIU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EMxWUo3PF0LcBzGxJrWqfGJLLrk= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EMxWUo3PF0LcBzGxJrWqfGJLLrk= new file mode 100644 index 0000000..3811651 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EMxWUo3PF0LcBzGxJrWqfGJLLrk= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EdS1KvgVnIcaCyaRA3XrqbCBQR4= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EdS1KvgVnIcaCyaRA3XrqbCBQR4= new file mode 100644 index 0000000..30185e4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EdS1KvgVnIcaCyaRA3XrqbCBQR4= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EfuSnjS2MIUFkr9P1dbyoM+Tbio= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EfuSnjS2MIUFkr9P1dbyoM+Tbio= new file mode 100644 index 0000000..6bc70af Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EfuSnjS2MIUFkr9P1dbyoM+Tbio= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/KJno4uI8q5kktFkyJLLPk3QAbpg= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/KJno4uI8q5kktFkyJLLPk3QAbpg= new file mode 100644 index 0000000..2d8d670 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/KJno4uI8q5kktFkyJLLPk3QAbpg= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MXMHdXWsrw_WZNSlQE4wNLfMp6U= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MXMHdXWsrw_WZNSlQE4wNLfMp6U= new file mode 100644 index 0000000..d4118d6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MXMHdXWsrw_WZNSlQE4wNLfMp6U= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MepoSHNOjDnq6ERVPlyb6RHW6Gs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MepoSHNOjDnq6ERVPlyb6RHW6Gs= new file mode 100644 index 0000000..d05d5f7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MepoSHNOjDnq6ERVPlyb6RHW6Gs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MiDLVOg5KQjz0l1r7rgLzn8Xz7Q= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MiDLVOg5KQjz0l1r7rgLzn8Xz7Q= new file mode 100644 index 0000000..dc7b90e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/MiDLVOg5KQjz0l1r7rgLzn8Xz7Q= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PIasTeHxSph7enFyqnjLP4G0sUQ= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PIasTeHxSph7enFyqnjLP4G0sUQ= new file mode 100644 index 0000000..5b0de3f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PIasTeHxSph7enFyqnjLP4G0sUQ= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/R+kQ6vGwTLVeM9YK6nJvKSY5ako= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/R+kQ6vGwTLVeM9YK6nJvKSY5ako= new file mode 100644 index 0000000..6c3f095 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/R+kQ6vGwTLVeM9YK6nJvKSY5ako= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/SP_DA692HXM5z7Od2HhzunmSGfk= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/SP_DA692HXM5z7Od2HhzunmSGfk= new file mode 100644 index 0000000..6ccda32 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/SP_DA692HXM5z7Od2HhzunmSGfk= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/T0ZOSZdDyLfoF+w+kpzSG0+aFXU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/T0ZOSZdDyLfoF+w+kpzSG0+aFXU= new file mode 100644 index 0000000..c3eef53 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/T0ZOSZdDyLfoF+w+kpzSG0+aFXU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TUrSF9Lh07+qfXo+Zslldl9z3wI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TUrSF9Lh07+qfXo+Zslldl9z3wI= new file mode 100644 index 0000000..22a6ffc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TUrSF9Lh07+qfXo+Zslldl9z3wI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TfiyDUnkvBxAp2nFTsxLnksUAn4= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TfiyDUnkvBxAp2nFTsxLnksUAn4= new file mode 100644 index 0000000..8568b5b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TfiyDUnkvBxAp2nFTsxLnksUAn4= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/UWOF6Id32y9gszHKHnj8cL0No_s= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/UWOF6Id32y9gszHKHnj8cL0No_s= new file mode 100644 index 0000000..b2a9d0b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/UWOF6Id32y9gszHKHnj8cL0No_s= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/WhHFAB5RNGrAqMsNVH6WucnCwrA= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/WhHFAB5RNGrAqMsNVH6WucnCwrA= new file mode 100644 index 0000000..de755d1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/WhHFAB5RNGrAqMsNVH6WucnCwrA= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/YUKflHqkcAqYTpvZMmc7xPOWsyU= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/YUKflHqkcAqYTpvZMmc7xPOWsyU= new file mode 100644 index 0000000..730ca54 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/YUKflHqkcAqYTpvZMmc7xPOWsyU= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Z4QaAB7umWPofYR4An5s1KNtZPA= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Z4QaAB7umWPofYR4An5s1KNtZPA= new file mode 100644 index 0000000..9ec364b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Z4QaAB7umWPofYR4An5s1KNtZPA= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ZMR+PSAm7ZRILmyXFDQuaki5Nqc= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ZMR+PSAm7ZRILmyXFDQuaki5Nqc= new file mode 100644 index 0000000..2cec677 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ZMR+PSAm7ZRILmyXFDQuaki5Nqc= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/aF8_oIqePFsXcVixYoqXTAcQJyk= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/aF8_oIqePFsXcVixYoqXTAcQJyk= new file mode 100644 index 0000000..5850599 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/aF8_oIqePFsXcVixYoqXTAcQJyk= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/dUK7JZ3NMEuy1CXSZzljenqAxBM= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/dUK7JZ3NMEuy1CXSZzljenqAxBM= new file mode 100644 index 0000000..189e23f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/dUK7JZ3NMEuy1CXSZzljenqAxBM= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/dUZ1gX3zryxhBCrBITHyqFgQKz8= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/dUZ1gX3zryxhBCrBITHyqFgQKz8= new file mode 100644 index 0000000..d0a17a9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/dUZ1gX3zryxhBCrBITHyqFgQKz8= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/f60rb5PcmPqEnjEqNIJ615gkOdQ= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/f60rb5PcmPqEnjEqNIJ615gkOdQ= new file mode 100644 index 0000000..b2e1806 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/f60rb5PcmPqEnjEqNIJ615gkOdQ= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/kqZ0W_W63aDXe5IpttfPF4qOh9o= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/kqZ0W_W63aDXe5IpttfPF4qOh9o= new file mode 100644 index 0000000..acf8963 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/kqZ0W_W63aDXe5IpttfPF4qOh9o= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/lMPc37Lp2hwTAK6vE+2DDgQMGHs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/lMPc37Lp2hwTAK6vE+2DDgQMGHs= new file mode 100644 index 0000000..f65e4a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/lMPc37Lp2hwTAK6vE+2DDgQMGHs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rHWHQ4UPti8zwlrxN_X+5dcg9gI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rHWHQ4UPti8zwlrxN_X+5dcg9gI= new file mode 100644 index 0000000..33a6966 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rHWHQ4UPti8zwlrxN_X+5dcg9gI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rTpb44sD0NE60DWd1NB7AfGlC5o= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rTpb44sD0NE60DWd1NB7AfGlC5o= new file mode 100644 index 0000000..ab8ab73 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rTpb44sD0NE60DWd1NB7AfGlC5o= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rdkxgRfjDFSa4V2tGAexkbogykc= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rdkxgRfjDFSa4V2tGAexkbogykc= new file mode 100644 index 0000000..59222d9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/rdkxgRfjDFSa4V2tGAexkbogykc= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/sGXDPfK+RMvY9s2vSaf9ShV1BJI= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/sGXDPfK+RMvY9s2vSaf9ShV1BJI= new file mode 100644 index 0000000..5707aa8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/sGXDPfK+RMvY9s2vSaf9ShV1BJI= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/uW37zXpBRP14f7Lz5TZoF2THc6M= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/uW37zXpBRP14f7Lz5TZoF2THc6M= new file mode 100644 index 0000000..25e1933 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/uW37zXpBRP14f7Lz5TZoF2THc6M= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/vkf_3HmOpTSaNq7LvsqeGudeWNs= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/vkf_3HmOpTSaNq7LvsqeGudeWNs= new file mode 100644 index 0000000..846dea1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/vkf_3HmOpTSaNq7LvsqeGudeWNs= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/w+JOfbs1LOsz7V3N450XcRcuKQM= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/w+JOfbs1LOsz7V3N450XcRcuKQM= new file mode 100644 index 0000000..5039eb8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/w+JOfbs1LOsz7V3N450XcRcuKQM= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wgcicgfMOW9SVrM2VBF0SddzSLA= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wgcicgfMOW9SVrM2VBF0SddzSLA= new file mode 100644 index 0000000..ca57af2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wgcicgfMOW9SVrM2VBF0SddzSLA= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ytjHvTdI71nOXpjMY+RoY3D9SW4= b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ytjHvTdI71nOXpjMY+RoY3D9SW4= new file mode 100644 index 0000000..144d863 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ytjHvTdI71nOXpjMY+RoY3D9SW4= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..9ff1dbd --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000..662131f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties new file mode 100644 index 0000000..76b78f2 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,405 @@ +#Fri Oct 18 18:08:43 EEST 2019 +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v23\\abc_control_background_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23_abc_control_background_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_fade_out.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_out.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_toolbar.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_toolbar.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_holo_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout-v26\\abc_screen_toolbar.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v26_abc_screen_toolbar.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_simple.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_dialog_material_background.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_dialog_material_background.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_spinner.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_spinner.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_go_search_api_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_go_search_api_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\support_simple_spinner_dropdown_item.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_support_simple_spinner_dropdown_item.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_search_url_text.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_search_url_text.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_ab_back_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_ab_back_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_btn_colored_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_btn_colored_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_textfield_search_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_textfield_search_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_search_dropdown_item_icons_2line.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_dropdown_item_icons_2line.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_seekbar_track_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_track_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_btn_colored_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_activity_chooser_view.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_out_top.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_top.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_background_cache_hint_selector_material_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_background_cache_hint_selector_material_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_action_tombstone.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action_tombstone.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v21\\abc_btn_colored_borderless_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v21_abc_btn_colored_borderless_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_icon_background.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_icon_background.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_alert_dialog_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_btn_colored_borderless_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_borderless_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher_round.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi_ic_launcher_round.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_normal.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_fade_in.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_in.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_template_icon_group.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_icon_group.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-v21\\notification_action_background.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_notification_action_background.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout-watch-v20\\abc_alert_dialog_title_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-watch-v20_abc_alert_dialog_title_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_dialog_title_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_dialog_title_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_in_top.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_top.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_item_background_holo_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_fade_out.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_fade_out.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_radio.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_radio.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\select_dialog_multichoice_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_multichoice_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_seek_thumb.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_seek_thumb.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_search_api_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_search_api_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_hint_foreground_material_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\drawable\\redbox_top_border_background.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_redbox_top_border_background.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_bg.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_bar_title_item.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_title_item.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ratingbar_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_material.xml.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi_ic_launcher.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_edittext.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_edittext.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_dialog_material_background.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_dialog_material_background.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_radio_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_radio_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_hint_foreground_material_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_holo_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_fade_in.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_fade_in.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_mode_bar.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_bar.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_push_up_in.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_push_up_in.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_text_cursor_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_text_cursor_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_list_divider_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_list_divider_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_focused_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher_round.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi_ic_launcher_round.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_tile_bg.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_tile_bg.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-watch-v20\\abc_dialog_material_background.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-watch-v20_abc_dialog_material_background.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi_ic_launcher.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_disable_only_material_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_btn_colored_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_tooltip_enter.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_tooltip_enter.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_template_part_time.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_time.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\select_dialog_singlechoice_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_singlechoice_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_alert_dialog_title_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_title_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\redbox_item_title.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_redbox_item_title.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ratingbar_indicator_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_indicator_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_secondary_text_material_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\xml\\rn_dev_preferences.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\xml_rn_dev_preferences.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_default.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_default.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_spinner_textfield_background_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_spinner_textfield_background_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_check_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_check_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_normal.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_slide_up.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_slide_up.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\switch_thumb_material_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\dev_loading_view.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_dev_loading_view.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_colored_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_colored_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_material_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_color_highlight_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_color_highlight_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_tab_indicator_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_tab_indicator_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_edit_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_edit_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_borderless_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_borderless_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_switch_track.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_switch_track.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\select_dialog_item_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_item_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_switch_track.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_switch_track.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_grow_fade_in_from_bottom.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_grow_fade_in_from_bottom.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_tooltip_exit.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_tooltip_exit.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_action_bar_item_background_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_action_bar_item_background_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_secondary_text_material_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_popup_menu_item_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_item_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_action.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_divider_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_divider_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_template_custom_big.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_custom_big.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_checkbox.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_checkbox.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\tooltip_frame_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_tooltip_frame_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_template_part_chronometer.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_chronometer.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_list_menu_item_icon.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_icon.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_cab_background_internal_bg.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_internal_bg.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\fps_view.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_fps_view.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_simple_overlay_action_mode.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple_overlay_action_mode.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\switch_thumb_material_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_shrink_fade_out_from_bottom.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_shrink_fade_out_from_bottom.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v16\\notification_template_custom_big.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v16_notification_template_custom_big.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_seekbar_thumb_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_thumb_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_material_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_seek_thumb.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_seek_thumb.xml.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi_ic_launcher.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_menu_overflow_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_menu_overflow_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_in_bottom.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_bottom.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_default.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_default.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_select_dialog_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_select_dialog_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_popup_enter.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_enter.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_btn_checkable.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_btn_checkable.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_clear_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_clear_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_primary_text_disable_only_material_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_cascading_menu_item_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_cascading_menu_item_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_slide_out_bottom.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_bottom.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\anim\\abc_popup_exit.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_exit.xml.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi_ic_launcher.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_alert_dialog_button_bar_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_button_bar_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi_ic_launcher.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_switch_thumb_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_switch_thumb_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\redbox_item_frame.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_redbox_item_frame.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_edittext.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_edittext.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_seekbar_tick_mark_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_tick_mark_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_menu_item_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_item_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_screen_content_include.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_content_include.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable\\notification_bg_low.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg_low.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_bar_up_container.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_up_container.xml.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher_round.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi_ic_launcher_round.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_popup_menu_header_item_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_header_item_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_cab_background_top_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_top_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_btn_default_mtrl_shape.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_default_mtrl_shape.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout-v21\\notification_action_tombstone.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action_tombstone.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher_round.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi_ic_launcher_round.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_tooltip.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_tooltip.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_tint_spinner.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_spinner.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_vector_test.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_vector_test.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_template_icon_group.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_icon_group.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_expanded_menu_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_expanded_menu_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\layout\\redbox_view.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_redbox_view.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_push_up_out.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_push_up_out.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ic_voice_search_api_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_voice_search_api_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_borderless_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\tooltip_frame_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_tooltip_frame_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_background_cache_hint_selector_material_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_background_cache_hint_selector_material_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_activity_chooser_view_list_item.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view_list_item.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_focused_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-v21\\abc_edit_text_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_edit_text_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_menu_layout.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_layout.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_item_background_holo_dark.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_dark.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\res\\anim\\catalyst_slide_down.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\anim_catalyst_slide_down.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_star_black_48dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher_round.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi_ic_launcher_round.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_action_mode_close_item_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_close_item_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_ratingbar_small_material.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_small_material.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_light.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\layout\\abc_search_view.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_view.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\color\\abc_tint_btn_checkable.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_btn_checkable.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_36dp.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\res\\layout\\notification_action.xml=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action.xml.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +C\:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000..d8fe69b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,32 @@ + + + "Navigeer tuis" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "AF" + "AAN" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Funksie+" + "Meta+" + "Shift+" + "spasiebalk" + "Simbool+" + "Kieslys+" + "Soek …" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + "Vou in" + "Soek" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000..1029135 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,32 @@ + + + "ወደ መነሻ ይዳስሱ" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "ጠፍቷል" + "በርቷል" + "Alt+" + "Ctrl+" + "ሰርዝ" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "ምናሌ+" + "ፈልግ…" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር አጋራ" + "ሰብስብ" + "ፈልግ" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000..e7fb419 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,32 @@ + + + "التنقل إلى الشاشة الرئيسية" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "إيقاف" + "تشغيل" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "القائمة+" + "بحث…" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "مشاركة مع %s" + "تصغير" + "البحث" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml new file mode 100644 index 0000000..2287e53 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml @@ -0,0 +1,32 @@ + + + "গৃহ পৃষ্ঠালৈ যাওক" + "ওপৰলৈ যাওক" + "অধিক বিকল্প" + "সম্পন্ন কৰা হ\'ল" + "সকলো চাওক" + "এটা এপ্ বাছনি কৰক" + "অফ কৰক" + "অন কৰক" + "Alt+" + "CTRL+" + "মচক" + "এণ্টাৰ" + "ফাংশ্বন+" + "মেটা+" + "শ্বিফ্ট+" + "স্পেচ" + "Sym+" + "মেনু+" + "অনুসন্ধান কৰক…" + "প্ৰশ্ন মচক" + "সন্ধান কৰিব খোজা প্ৰশ্ন" + "সন্ধান কৰক" + "প্ৰশ্ন দাখিল কৰক" + "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক" + "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" + "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" + "সংকুচিত কৰক" + "অনুসন্ধান কৰক" + "৯৯৯+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml new file mode 100644 index 0000000..8bbbd5b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml @@ -0,0 +1,32 @@ + + + "Evə naviqasiya et" + "Yuxarı get" + "Digər variantlar" + "Hazırdır" + "Hamısına baxın" + "Tətbiq seçin" + "DEAKTİV" + "AKTİV" + "Alt+" + "Ctrl+" + "silin" + "daxil olun" + "Funksiya+" + "Meta+" + "Shift+" + "kosmos" + "Sym+" + "Menyu+" + "Axtarış..." + "Sorğunu təmizlə" + "Axtarış sorğusu" + "Axtarış" + "Sorğunu göndərin" + "Səsli axtarış" + "Bununla paylaşın" + "%s ilə paylaşın" + "Yığışdırın" + "Axtarış" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000..77f07c2 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,32 @@ + + + "Odlazak na Početnu" + "Kretanje nagore" + "Još opcija" + "Gotovo" + "Prikaži sve" + "Izbor aplikacije" + "ISKLJUČI" + "UKLJUČI" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "taster za razmak" + "Sym+" + "Menu+" + "Pretražite..." + "Brisanje upita" + "Upit za pretragu" + "Pretraga" + "Slanje upita" + "Glasovna pretraga" + "Deli sa" + "Deljenje sa aplikacijom %s" + "Skupi" + "Pretraži" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml new file mode 100644 index 0000000..a0019be --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml @@ -0,0 +1,32 @@ + + + "Перайсці на галоўную старонку" + "Перайсці ўверх" + "Дадатковыя параметры" + "Гатова" + "Прагледзець усё" + "Выбраць праграму" + "ВЫКЛ." + "УКЛ." + "Alt +" + "Ctrl +" + "Delete" + "Enter" + "Fn +" + "Meta +" + "Shift +" + "Прабел" + "Sym +" + "Меню +" + "Пошук..." + "Выдалiць запыт" + "Запыт на пошук" + "Пошук" + "Адправіць запыт" + "Галасавы пошук" + "Абагуліць з" + "Абагуліць праз праграму %s" + "Згарнуць" + "Пошук" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000..ce1cb44 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,32 @@ + + + "Придвижване към „Начало“" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "ИЗКЛ." + "ВКЛ." + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "клавиша за интервал" + "Sym+" + "Menu+" + "Търсете…" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + "Свиване" + "Търсене" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml new file mode 100644 index 0000000..b9e182a --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml @@ -0,0 +1,32 @@ + + + "হোম এ নেভিগেট করুন" + "উপরের দিকে নেভিগেট করুন" + "আরও বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান বেছে নিন" + "বন্ধ" + "চালু" + "Alt+" + "Ctrl+" + "মুছুন" + "enter" + "Function+" + "Meta+" + "Shift+" + "স্পেস" + "Sym+" + "মেনু+" + "অনুসন্ধান..." + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী খুঁজুন" + "খুঁজুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে শেয়ার করুন" + "%s এর সাথে শেয়ার করুন" + "সঙ্কুচিত করুন" + "খুঁজুন" + "৯৯৯+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml new file mode 100644 index 0000000..bc8630d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml @@ -0,0 +1,32 @@ + + + "Vrati se na početnu stranicu" + "Navigiraj prema gore" + "Više opcija" + "Gotovo" + "Prikaži sve" + "Odaberite aplikaciju" + "ISKLJUČI" + "UKLJUČI" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "razmaknica" + "Sym+" + "Menu+" + "Pretraži..." + "Obriši upit" + "Pretraži upit" + "Traži" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeli sa" + "Dijeli koristeći aplikaciju %s" + "Skupi" + "Pretraži" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000..833039e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,32 @@ + + + "Navega a la pàgina d\'inici" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "DESACTIVAT" + "ACTIVAT" + "Alt+" + "Ctrl+" + "Supr" + "Retorn" + "Funció+" + "Meta+" + "Maj+" + "Espai" + "Sym+" + "Menú+" + "Cerca..." + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + "Replega" + "Cerca" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000..a5878ca --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,32 @@ + + + "Přejít na plochu" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "VYPNUTO" + "ZAPNUTO" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Shift+" + "mezerník" + "Sym+" + "Menu+" + "Vyhledat…" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet s aplikací %s" + "Sbalit" + "Hledat" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000..7ae28b4 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,32 @@ + + + "Naviger hjem" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "FRA" + "TIL" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Shift+" + "mellemrum" + "Sym+" + "Menu+" + "Søg…" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Talesøgning" + "Del med" + "Del med %s" + "Skjul" + "Søg" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000..d2f8510 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,32 @@ + + + "Zur Startseite" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Aus" + "An" + "Alt +" + "Strg +" + "Löschen" + "Eingabetaste" + "Funktionstaste +" + "Meta-Taste +" + "Umschalttaste +" + "Leertaste +" + "Sym-Taste +" + "Menütaste +" + "Suchen…" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Mit %s teilen" + "Minimieren" + "Suchen" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000..de7398c --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,32 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" + "ΕΝΕΡΓΟΠΟΙΗΣΗ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "διάστημα" + "Sym+" + "Menu+" + "Αναζήτηση…" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + "Σύμπτυξη" + "Αναζήτηση" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000..0b21ff7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000..0b21ff7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000..0b21ff7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000..0b21ff7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000..52e1a7d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,32 @@ + + + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‏‏‏‏‏‎‏‏‎‎‏‏‏‎‏‏‎‏‏‏‎‎‏‎‎‎‏‏‎‏‏‏‎‎‏‏‏‎‎‏‎‎‏‏‎‎‎‏‎Navigate home‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‎‎‏‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‎‏‏‎‏‎‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‎‏‏‏‏‏‎‎Navigate up‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‎‏‏‏‎‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‎‎‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‎‎‏‏‎‎More options‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎‎‎‏‎‎‏‎‏‏‏‏‎‏‏‎Done‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‏‎‎‏‏‎‏‎‏‏‎‏‏‏‏‏‎‎‏‏‏‎‎‏‏‏‏‎‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‎‏‎‎‏‏‏‏‎‏‎See all‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‎‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‏‏‏‏‏‏‎‎‎‏‎‎‏‎‏‎‎‎‏‏‎‏‎‏‏‎‎‏‏‏‏‏‎‏‎‎‏‏‏‏‎‎Choose an app‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‏‎‏‎‏‏‏‎‎‏‎‏‏‎‏‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‏‏‎‎‎‏‏‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‎‎‏‎OFF‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‎‏‎‏‎‎‏‎‎‎‏‎‎‎‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎ON‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‎‎‏‎‎‏‎‏‎‏‎‎‎‎‏‎‎‏‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎‏‎‏‏‏‎‏‏‏‏‏‎Alt+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‏‏‎‎‎‏‎‏‎‏‏‏‏‏‏‎‏‎‎‎‏‎‎‏‎‏‏‎‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‎‏‏‏‎‎‏‎‎‎‎‎Ctrl+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‎‏‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‏‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‎‏‏‎‎delete‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‎‎‎‎‏‏‏‎‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‏‎‎‎‎‏‏‏‎‎‎enter‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‏‎‎‏‏‎Function+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‎‏‎‎‏‏‎‏‎‎‏‎‏‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‎‏‎‎‏‏‎‎‎‎‏‏‎‏‎‏‎‏‎‏‎Meta+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‎‏‎‎‎‏‏‏‎‏‎‎‎Shift+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‎‏‎‎‎‎‎‎‏‎‎‏‎‎‏‏‏‏‎‏‏‎‎‎‏‏‏‏‎‏‏‏‏‎‎‎‏‏‏‏‎‏‏‎‏‎‏‏‎‏‏‏‏‎‏‎‏‎‎space‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‏‎‎‎‏‎‏‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‎‎‏‎Sym+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‏‎‎‏‏‎‏‏‎‏‎‎‏‏‎‏‎‏‏‏‎‏‎‎‏‏‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‏‏‎‎‎‏‏‎‏‎Menu+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‎‎‎‎‏‎‎‎‏‎‏‎‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‏‎‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‏‏‏‎‎Search…‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‎‎‏‏‏‎‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‎‎‏‎Clear query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‏‎‎‏‎‏‎‎‎‏‏‏‏‏‎‎‏‎‏‎‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‏‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‎‎Search query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‎‏‎‏‏‎‎‏‎‏‏‏‎‏‎‎‏‎‏‎‎‏‎‎‎‏‏‎‏‎‏‎‏‎‏‎‎‎‏‎‏‎‎‎‎‎‎‏‎‏‏‎‎‎‏‎‏‎Search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‏‎‎‏‏‏‎‏‏‎‎‏‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‎‎‎‎‎‎Submit query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‎‎‏‎‎‎‎‎‎‏‎‏‏‏‏‏‎‏‏‏‎‎‏‏‏‎‎‎‏‎‏‎‎‏‏‎‏‏‎‎‏‎‎‎‏‏‎‎Voice search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‏‏‎‎‏‏‏‏‏‏‎‏‏‏‏‎‏‎‎‎‏‎‏‎‏‏‏‎‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‏‎‏‏‎‏‎‎‎Share with‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‏‎‏‎‏‎‏‎‎‏‎‏‏‏‏‏‎‏‎‏‎‎‏‏‏‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‏‎‎‎‎‎‎‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‏‏‎‎‎‏‏‏‎‎‎‏‏‎‎‏‏‎‏‏‏‏‏‎‏‏‎‏‏‏‎‏‎Collapse‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‎‏‎‎‎‎‎‎‏‏‏‎‏‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‎‏‎‏‎‎‎‏‎‎‏‎‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‎Search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‏‏‎‏‏‎‎‎‎‏‎‏‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‏‏‏‎‎‏‎‏‏‏‎‏‏‏‏‏‏‏‎‎‎‏‏‎999+‎‏‎‎‏‎" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000..edb8524 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,32 @@ + + + "Navegar a la página principal" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "DESACTIVADO" + "ACTIVADO" + "Alt+" + "Ctrl+" + "borrar" + "intro" + "Función+" + "Meta+" + "Mayúscula+" + "espacio" + "Sym+" + "Menú+" + "Buscar…" + "Eliminar la consulta" + "Búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000..d2265ad --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,32 @@ + + + "Ir a la pantalla de inicio" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "DESACTIVADO" + "ACTIVADO" + "Alt +" + "Ctrl +" + "Eliminar" + "Intro" + "Función +" + "Meta +" + "Mayús +" + "Espacio" + "Sym +" + "Menú +" + "Buscar…" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "+999" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml new file mode 100644 index 0000000..05be6e9 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml @@ -0,0 +1,32 @@ + + + "Navigeerimine avaekraanile" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "VÄLJAS" + "SEES" + "Alt +" + "Ctrl +" + "kustutamisklahv" + "sisestusklahv" + "Funktsiooniklahv +" + "Meta +" + "Tõstuklahv +" + "tühik" + "Sym +" + "Menüü +" + "Otsige …" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine rakendusega %s" + "Ahendamine" + "Otsing" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml new file mode 100644 index 0000000..8c09875 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml @@ -0,0 +1,32 @@ + + + "Joan orri nagusira" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "DESAKTIBATUTA" + "AKTIBATUTA" + "Alt +" + "Ktrl +" + "Ezabatu" + "Sartu" + "Funtzioa +" + "Meta +" + "Maius +" + "Zuriunea" + "Sym +" + "Menua +" + "Bilatu…" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahozko bilaketa" + "Partekatu hauekin" + "Partekatu %s aplikazioarekin" + "Tolestu" + "Bilatu" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000..90b2898 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,32 @@ + + + "پیمایش به صفحه اصلی" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "تمام" + "مشاهده همه" + "انتخاب برنامه" + "خاموش" + "روشن" + "‎Alt+‎" + "‎Ctrl+‎" + "delete" + "enter" + "‎Function+‎" + "‎Meta+‎" + "‎Shift+‎" + "کلید فاصله" + "‎Sym+‎" + "منو+" + "جستجو…" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی گفتاری" + "اشتراک‌گذاری با" + "اشتراک‌گذاری با %s" + "کوچک کردن" + "جستجو" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000..75b02bb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,32 @@ + + + "Siirry etusivulle" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "POIS KÄYTÖSTÄ" + "KÄYTÖSSÄ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Vaihto+" + "välilyönti" + "Sym+" + "Valikko+" + "Haku…" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jaa sovelluksessa %s" + "Kutista" + "Haku" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000..f71cf03 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,32 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Alt+" + "Ctrl+" + "supprimer" + "entrée" + "Fonction+" + "Méta+" + "Maj+" + "espace" + "Sym+" + "Menu+" + "Recherche en cours..." + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager" + "Partager avec %s" + "Réduire" + "Rechercher" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000..2aee397 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,32 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Alt+" + "Ctrl+" + "supprimer" + "entrée" + "Fonction+" + "Méta+" + "Maj+" + "espace" + "Sym+" + "Menu+" + "Rechercher…" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + "Réduire" + "Rechercher" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml new file mode 100644 index 0000000..d0081c6 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml @@ -0,0 +1,32 @@ + + + "Ir á páxina de inicio" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "DESACTIVAR" + "ACTIVAR" + "Alt +" + "Ctrl +" + "eliminar" + "Intro" + "Función +" + "Meta +" + "Maiús +" + "espazo" + "Sim +" + "Menú +" + "Buscar…" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + ">999" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml new file mode 100644 index 0000000..0a3b83b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml @@ -0,0 +1,32 @@ + + + "હોમ પર નેવિગેટ કરો" + "ઉપર નૅવિગેટ કરો" + "વધુ વિકલ્પો" + "થઈ ગયું" + "બધું જુઓ" + "એક ઍપ્લિકેશન પસંદ કરો" + "બંધ" + "ચાલુ" + "Alt+" + "Ctrl+" + "ડિલીટ કરો" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Spacebar" + "Sym+" + "મેનૂ+" + "શોધો…" + "ક્વેરી સાફ કરો" + "શોધ ક્વેરી" + "શોધો" + "ક્વેરી સબમિટ કરો" + "વૉઇસ શોધ" + "આની સાથે શેર કરો" + "%sની સાથે શેર કરો" + "સંકુચિત કરો" + "શોધો" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000..e38bb90 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000..d5a138e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000..6576cb7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,32 @@ + + + "होम पेज पर जाएं" + "ऊपर जाएं" + "ज़्यादा विकल्प" + "हो गया" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "बंद" + "चालू" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "खोजा जा रहा है…" + "क्‍वेरी साफ़ करें" + "सर्च क्वेरी" + "सर्च करें" + "क्वेरी सबमिट करें" + "आवाज़ सर्च" + "इसके साथ शेयर करें" + "%s के साथ शेयर करें" + "छोटा करें" + "सर्च" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000..2c3e6ae --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,32 @@ + + + "Idi na početnu" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "ISKLJUČENO" + "UKLJUČENO" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "razmaknica" + "Sym+" + "Menu+" + "Pretražite…" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeli putem aplikacije %s" + "Sažmi" + "Pretraživanje" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000..f980def --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,32 @@ + + + "Ugrás a főoldalra" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "KI" + "BE" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Szóköz" + "Sym+" + "Menu+" + "Keresés…" + "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ő alkalmazással: %s" + "Összecsukás" + "Keresés" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml new file mode 100644 index 0000000..3247f9a --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml @@ -0,0 +1,32 @@ + + + "Ուղղվել տուն" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Պատրաստ է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "ԱՆՋԱՏՎԱԾ" + "ՄԻԱՑՎԱԾ" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "բացատ" + "Sym+" + "Menu+" + "Որոնում..." + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Կիսվել" + "Ուղարկել %s-ին" + "Թաքցնել" + "Որոնել" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000..314af7e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,32 @@ + + + "Navigasi ke beranda" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "NONAKTIF" + "AKTIF" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "spasi" + "Sym+" + "Menu+" + "Telusuri..." + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan ke %s" + "Ciutkan" + "Telusuri" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml new file mode 100644 index 0000000..58321f7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml @@ -0,0 +1,32 @@ + + + "Fara heim" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "SLÖKKT" + "KVEIKT" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Aðgerðarlykill+" + "Meta+" + "Shift+" + "bilslá" + "Sym+" + "Valmynd+" + "Leita…" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + "Minnka" + "Leita" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000..48842b3 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,32 @@ + + + "Vai alla home page" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "OFF" + "ON" + "ALT +" + "CTRL +" + "CANC" + "INVIO" + "FUNZIONE +" + "META +" + "MAIUSC +" + "barra spaziatrice" + "SYM +" + "MENU +" + "Cerca…" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi tramite %s" + "Comprimi" + "Ricerca" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000..ed74d57 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,32 @@ + + + "נווט לדף הבית" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכל" + "בחר אפליקציה" + "כבוי" + "פועל" + "Alt+" + "Ctrl+‎" + "delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "מקש רווח" + "Sym+" + "תפריט+" + "חיפוש…" + "מחק שאילתה" + "שאילתת חיפוש" + "חיפוש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "שתף עם %s" + "כווץ" + "חיפוש" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000..6be4581 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,32 @@ + + + "ホームへ移動" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Space" + "Sym+" + "Menu+" + "検索…" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + "折りたたむ" + "検索" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml new file mode 100644 index 0000000..8e91c0a --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml @@ -0,0 +1,32 @@ + + + "მთავარზე ნავიგაცია" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "გამორთულია" + "ჩართულია" + "Alt+" + "Ctrl+" + "წაშლა" + "შეყვანა" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ძიება..." + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "გაუზიარეთ %s-ს" + "აკეცვა" + "ძიება" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml new file mode 100644 index 0000000..d9596d0 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml @@ -0,0 +1,32 @@ + + + "Негізгі бетте қозғалу" + "Жоғары қозғалу" + "Басқа опциялар" + "Дайын" + "Барлығын көру" + "Қолданбаны таңдау" + "ӨШІРУЛІ" + "ҚОСУЛЫ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "бос орын" + "Sym+" + "Mәзір+" + "Іздеу…" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s қолданбасымен бөлісу" + "Тасалау" + "Іздеу" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml new file mode 100644 index 0000000..57735d2 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml @@ -0,0 +1,32 @@ + + + "រកមើល​ទៅ​ដើម" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "បិទ" + "បើក" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ស្វែងរក…" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែក​រំលែក​ជា​មួយ %s" + "បង្រួម" + "ស្វែងរក" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml new file mode 100644 index 0000000..1e2402b --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml @@ -0,0 +1,32 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಆಫ್" + "ಆನ್" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ಹುಡುಕಿ…" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "ಸಂಕುಚಿಸು" + "ಹುಡುಕಿ" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000..5e0d052 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,32 @@ + + + "홈 탐색" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "사용 안함" + "사용" + "Alt+" + "Ctrl+" + "삭제" + "입력" + "Function+" + "Meta+" + "Shift+" + "스페이스바" + "Sym+" + "Menu+" + "검색..." + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + "접기" + "검색" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml new file mode 100644 index 0000000..7a8bb7f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml @@ -0,0 +1,32 @@ + + + "Үйгө багыттоо" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "ӨЧҮК" + "КҮЙҮК" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "боштук" + "Sym+" + "Menu+" + "Издөө…" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + "Жыйнап коюу" + "Издөө" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml new file mode 100644 index 0000000..a12899f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,6 @@ + + + 48dp + 12dp + 14dp + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000..cc236eb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,12 @@ + + + 440dp + 60% + 90% + 60% + 90% + 55% + 80% + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml new file mode 100644 index 0000000..f85a197 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 0000000..7dad77f --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 0000000..3691890 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,276 @@ + + + @color/secondary_text_default_material_light + 0dp + 0dp + 12dp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml new file mode 100644 index 0000000..d4a514a --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml new file mode 100644 index 0000000..d807aae --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml @@ -0,0 +1,38 @@ + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml new file mode 100644 index 0000000..8b28a46 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000..1eabc08 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,32 @@ + + + "Điều hướng về trang chủ" + "Điều hướng lên trên" + "Tùy chọn khác" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "TẮT" + "BẬT" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "phím cách" + "Sym+" + "Menu+" + "Tìm kiếm…" + "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" + "Thu gọn" + "Tìm kiếm" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml new file mode 100644 index 0000000..2d85812 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml new file mode 100644 index 0000000..deecc9e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml @@ -0,0 +1,15 @@ + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000..b499d2c --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,9 @@ + + + 60% + 90% + 50% + 70% + 45% + 72% + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..68140f7 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,32 @@ + + + "转到主屏幕" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "关闭" + "开启" + "Alt+" + "Ctrl+" + "Delete 键" + "Enter 键" + "Fn+" + "Meta+" + "Shift+" + "空格键" + "Sym+" + "Menu+" + "搜索…" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "使用%s分享" + "收起" + "搜索" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000..f533663 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,32 @@ + + + "瀏覽主頁" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "關閉" + "開啟" + "Alt +" + "Ctrl +" + "刪除" + "Enter 鍵" + "Fn +" + "Meta +" + "Shift +" + "空白鍵" + "Sym +" + "Menu +" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "使用「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000..75f498a --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,32 @@ + + + "瀏覽首頁" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "關閉" + "開啟" + "Alt +" + "Ctrl +" + "Delete 鍵" + "Enter 鍵" + "Fn +" + "Meta +" + "Shift +" + "空格鍵" + "Sym +" + "Menu +" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000..31e318d --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,32 @@ + + + "Zulazulela ekhaya" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "VALIWE" + "VULIWE" + "Alt+" + "Ctrl+" + "susa" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Imenyu+" + "Iyasesha..." + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana ne-%s" + "Goqa" + "Sesha" + "999+" + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..657e38e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,3554 @@ + + + + + + + + true + false + true + @android:color/black + #7fa87f + @android:color/black + @android:color/black + @color/material_deep_teal_200 + @color/material_deep_teal_500 + @color/material_grey_800 + @android:color/white + @color/material_grey_850 + @color/material_grey_50 + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #eecc0000 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #ff7043 + #ff5722 + @android:color/white + @android:color/black + #6680cbc4 + #66009688 + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #fff5f5f5 + #ffe0e0e0 + #fffafafa + #ff757575 + #ff424242 + #ff303030 + #ff212121 + #ffffffff + #ff9e9e9e + @android:color/black + @color/material_grey_600 + @color/material_grey_900 + @color/material_grey_100 + #ffffffff + #de000000 + #4Dffffff + #39000000 + #33ffffff + #1f000000 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + #e6616161 + #e6FFFFFF + 16dp + 72dp + 56dp + 0dp + 0dp + 4dp + 16dp + 10dp + 6dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 720dp + 320dp + 2dp + 4dp + 4dp + 2dp + 80% + 100% + 320dp + 320dp + 8dp + 8dp + 65% + 95% + 24dp + 18dp + 8dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 4dp + 48dip + 320dip + 2dp + 2dp + 20dp + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 14sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 4dp + 6dp + 8dp + 4dp + 2dp + 320dp + 320dp + 0.30 + 0.26 + 0.26 + 0.20 + 0.12 + 0.50 + 0.38 + 0.70 + 0.54 + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 2dp + 3dp + 24dp + 13sp + 10dp + 5dp + 2dp + 16dp + 8dp + 8dp + 96dp + 6.5dp + 0dp + 16dp + #3333B5E5 + #0cffffff + + + + + + + + + + + + + + + + + + + + + + + + + + + 220 + 150 + 127 + 150 + 8081 + 8081 + 999 + Navigate home + Navigate up + More options + Done + See all + Choose an app + OFF + ON + sans-serif + sans-serif-medium + sans-serif-medium + sans-serif + sans-serif + sans-serif + sans-serif + sans-serif-light + sans-serif + sans-serif + sans-serif + sans-serif-medium + Alt+ + Ctrl+ + delete + enter + Function+ + Meta+ + Shift+ + space + Sym+ + Menu+ + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + Alert + MemoApp + Change Bundle Location + Copy\n + Debug + Debug with Chrome + Stop Chrome Debugging + Connecting to debugger... + Failed to connect to debugger! + Debug with Nuclide + Failed to communicate with the bundler to enabling debugging with Nuclide. + Stop Debugging + Dismiss\n(ESC) + Capture Heap + Enable Fast Refresh + Disabling Fast Refresh because it requires a development bundle. + Switching to development bundle in order to enable Fast Refresh. + Disable Fast Refresh + Toggle Inspector + Loading from %1$s… + Show Perf Monitor + Hide Perf Monitor + Reload + Reload\n(R,\u00A0R) + Failed to load bundle. Try restarting the bundler or reconnecting your device. + Report + Disable Sampling Profiler + Enable Sampling Profiler + Settings + Debug Settings + Combo Box + Heading + Image + Button, Image + Link + Menu + Menu Bar + Menu Item + Progress Bar + Radio Group + Tab + Scroll Bar + Search Field + Search + Spin Button + busy + collapsed + expanded + mixed + off + on + 999+ + Summary + Tab List + Timer + Tool Bar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merger.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merger.xml new file mode 100644 index 0000000..6eb0d92 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugResources/merger.xml @@ -0,0 +1,4275 @@ + +#ffffffff#ff9e9e9e#1f000000#8a000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+"999+""999+""999+""999+""999+" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + truefalsetrue@android:color/black#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500@color/material_grey_800@android:color/white@color/material_grey_850@color/material_grey_50#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#ff7043#ff5722@android:color/white@android:color/black#6680cbc4#66009688#ff37474f#ff263238#ff21272b#ff80cbc4#ff009688#fff5f5f5#ffe0e0e0#fffafafa#ff757575#ff424242#ff303030#ff212121@android:color/black@color/material_grey_600@color/material_grey_900@color/material_grey_100#ffffffff#de000000#4Dffffff#39000000#33ffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f1#e6616161#e6FFFFFF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 16dp72dp56dp0dp0dp4dp16dp10dp6dp48dp180dp5dp-3dp48dp48dp36dp48dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material720dp320dp2dp4dp4dp2dp80%100%320dp320dp8dp8dp65%95%24dp18dp8dp0.300.2632dip8dip8dip7dp4dp10dp16dp@dimen/abc_action_bar_content_inset_material296dp4dp48dip320dip2dp2dp20dp3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp14sp16sp14sp16sp16dp20sp20dp0.300.260.260.200.120.500.380.700.542dp16dp8dp8dp96dp6.5dp0dp16dp220150127150Navigate homeNavigate upMore optionsDoneSee allChoose an appOFFONsans-serifsans-serif-mediumsans-serif-mediumsans-serifsans-serifsans-serifsans-serifsans-serif-lightsans-serifsans-serifsans-serifsans-serif-mediumAlt+Ctrl+deleteenterFunction+Meta+Shift+spaceSym+Menu+Search…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapseSearch"होम पेज पर जाएं""ऊपर जाएं""ज़्यादा विकल्प""हो गया""सभी देखें""कोई एप्‍लिकेशन चुनें""बंद""चालू""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजा जा रहा है…""क्‍वेरी साफ़ करें""सर्च क्वेरी""सर्च करें""क्वेरी सबमिट करें""आवाज़ सर्च""इसके साथ शेयर करें""%s के साथ शेयर करें""छोटा करें""सर्च""Idi na početnu""Idi gore""Dodatne opcije""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUČENO""UKLJUČENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""razmaknica""Sym+""Menu+""Pretražite…""Izbriši upit""Upit za pretraživanje""Pretraživanje""Pošalji upit""Glasovno pretraživanje""Dijeljenje sa""Dijeli putem aplikacije %s""Sažmi""Pretraživanje""Ugrás a főoldalra""Felfelé mozgatás""További lehetőségek""Kész""Összes megtekintése""Válasszon ki egy alkalmazást""KI""BE""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Szóköz""Sym+""Menu+""Keresés…""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ő alkalmazással: %s""Összecsukás""Keresés""Ուղղվել տուն""Ուղղվել վերև""Այլ ընտրանքներ""Պատրաստ է""Տեսնել բոլորը""Ընտրել ծրագիր""ԱՆՋԱՏՎԱԾ""ՄԻԱՑՎԱԾ""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""բացատ""Sym+""Menu+""Որոնում...""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Կիսվել""Ուղարկել %s-ին""Թաքցնել""Որոնել""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan ke %s""Ciutkan""Telusuri""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""delete""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""Vai alla home page""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""barra spaziatrice""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Ricerca""נווט לדף הבית""נווט למעלה""עוד אפשרויות""בוצע""ראה הכל""בחר אפליקציה""כבוי""פועל""Alt+""Ctrl+‎""delete""Enter""Function+""Meta+""Shift+""מקש רווח""Sym+""תפריט+""חיפוש…""מחק שאילתה""שאילתת חיפוש""חיפוש""שלח שאילתה""חיפוש קולי""שתף עם""שתף עם %s""כווץ""חיפוש""ホームへ移動""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""მთავარზე ნავიგაცია""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""გამორთულია""ჩართულია""Alt+""Ctrl+""წაშლა""შეყვანა""Function+""Meta+""Shift+""space""Sym+""Menu+""ძიება...""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""გაუზიარეთ %s-ს""აკეცვა""ძიება""Негізгі бетте қозғалу""Жоғары қозғалу""Басқа опциялар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУЛІ""ҚОСУЛЫ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""бос орын""Sym+""Mәзір+""Іздеу…""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s қолданбасымен бөлісу""Тасалау""Іздеу""រកមើល​ទៅ​ដើម""រកមើល​ឡើងលើ""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""មើល​ទាំងអស់""ជ្រើស​កម្មវិធី​​""បិទ""បើក""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ស្វែងរក…""សម្អាត​សំណួរ""ស្វែងរក​សំណួរ""ស្វែងរក""ដាក់​​​ស្នើ​សំណួរ""ការស្វែងរក​សំឡេង""ចែករំលែក​ជាមួយ""ចែក​រំលែក​ជា​មួយ %s""បង្រួម""ស្វែងរក""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಆಫ್""ಆನ್""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ಹುಡುಕಿ…""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಸಂಕುಚಿಸು""ಹುಡುಕಿ""홈 탐색""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""사용 안함""사용""Alt+""Ctrl+""삭제""입력""Function+""Meta+""Shift+""스페이스바""Sym+""Menu+""검색...""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""접기""검색""Үйгө багыттоо""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""боштук""Sym+""Menu+""Издөө…""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү""Жыйнап коюу""Издөө"48dp12dp14dp440dp60%90%60%90%55%80%0px"Điều hướng về trang chủ""Điều hướng lên trên""Tùy chọn khác""Xong""Xem tất cả""Chọn một ứng dụng""TẮT""BẬT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""phím cách""Sym+""Menu+""Tìm kiếm…""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""Thu gọn""Tìm kiếm"60%90%50%70%45%72%"转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""使用%s分享""收起""搜索""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""刪除""Enter 鍵""Fn +""Meta +""Shift +""空白鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""使用「%s」分享""收合""搜尋""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""VALIWE""VULIWE""Alt+""Ctrl+""susa""enter""Function+""Meta+""Shift+""space""Sym+""Imenyu+""Iyasesha...""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana ne-%s""Goqa""Sesha"#eecc000080818081AlertChange Bundle LocationCopy\nDebugDebug with ChromeStop Chrome DebuggingConnecting to debugger...Failed to connect to debugger!Debug with NuclideFailed to communicate with the bundler to enabling debugging with Nuclide.Stop DebuggingDismiss\n(ESC)Capture HeapEnable Fast RefreshDisabling Fast Refresh because it requires a development bundle.Switching to development bundle in order to enable Fast Refresh.Disable Fast RefreshToggle InspectorLoading from %1$s…Show Perf MonitorHide Perf MonitorReloadReload\n(R,\u00A0R)Failed to load bundle. Try restarting the bundler or reconnecting your device.ReportDisable Sampling ProfilerEnable Sampling ProfilerSettingsDebug SettingsCombo BoxHeadingImageButton, ImageLinkMenuMenu BarMenu ItemProgress BarRadio GroupTabScroll BarSearch FieldSpin ButtonbusycollapsedexpandedmixedoffonSummaryTab ListTimerTool BarMemoApp80818081 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml b/MemoApp/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..f518efb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt new file mode 100644 index 0000000..10727f6 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt @@ -0,0 +1,4 @@ +#Fri Oct 18 18:10:18 EEST 2019 +base.0=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\dexMerger\\debug\\0 +path.0=classes.dex +renamed.0=classes.dex diff --git a/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/file-input-save-data.txt b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/file-input-save-data.txt new file mode 100644 index 0000000..204ec1c --- /dev/null +++ b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/file-input-save-data.txt @@ -0,0 +1,247 @@ +#Internal package file, do not edit. +#Fri Oct 18 18:10:21 EEST 2019 +56.path=lib/x86_64/libnative-filters.so +5.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +42.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +22.path=lib/armeabi-v7a/libjsijniprofiler.so +32.set=NATIVE_RESOURCE +52.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +32.path=lib/x86/libjsijniprofiler.so +36.baseType=DIRECTORY +18.baseType=DIRECTORY +27.baseType=DIRECTORY +55.baseType=DIRECTORY +46.baseType=DIRECTORY +9.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +21.set=NATIVE_RESOURCE +46.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +39.set=NATIVE_RESOURCE +26.path=lib/x86/libnative-filters.so +56.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +6.baseType=DIRECTORY +36.path=lib/x86_64/libfb.so +10.set=NATIVE_RESOURCE +28.set=NATIVE_RESOURCE +22.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +32.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +12.path=lib/arm64-v8a/libglog.so +17.set=NATIVE_RESOURCE +50.set=NATIVE_RESOURCE +26.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +36.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +1.set=NATIVE_RESOURCE +37.baseType=DIRECTORY +28.baseType=DIRECTORY +16.path=lib/x86_64/libglog.so +19.baseType=DIRECTORY +57.set=NATIVE_RESOURCE +56.baseType=DIRECTORY +12.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +8.set=NATIVE_RESOURCE +46.set=NATIVE_RESOURCE +7.baseType=DIRECTORY +35.set=NATIVE_RESOURCE +2.path=lib/armeabi-v7a/libnative-filters.so +16.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +24.set=NATIVE_RESOURCE +6.path=lib/x86/libglog.so +47.baseType=DIRECTORY +43.path=lib/arm64-v8a/libc++_shared.so +38.baseType=DIRECTORY +29.baseType=DIRECTORY +10.baseType=DIRECTORY +57.baseType=DIRECTORY +13.set=NATIVE_RESOURCE +53.path=lib/arm64-v8a/libreactnativejni.so +2.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +8.baseType=DIRECTORY +47.path=lib/armeabi-v7a/libimagepipeline.so +53.set=NATIVE_RESOURCE +57.path=lib/x86_64/libjsijniprofiler.so +6.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +43.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +4.set=NATIVE_RESOURCE +23.path=lib/x86/libnative-imagetranscoder.so +42.set=NATIVE_RESOURCE +53.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +33.path=lib/x86/libimagepipeline.so +17.path=lib/x86_64/libreactnativejni.so +31.set=NATIVE_RESOURCE +49.set=NATIVE_RESOURCE +47.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +48.baseType=DIRECTORY +39.baseType=DIRECTORY +20.baseType=DIRECTORY +27.path=lib/armeabi-v7a/libglog.so +58.baseType=DIRECTORY +57.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +37.path=classes.dex +20.set=NATIVE_RESOURCE +38.set=NATIVE_RESOURCE +23.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +9.baseType=DIRECTORY +33.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +13.path=lib/x86/libc++_shared.so +17.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +27.set=NATIVE_RESOURCE +60.set=NATIVE_RESOURCE +count=61 +27.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +16.set=NATIVE_RESOURCE +37.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\dexMerger\\debug\\0 +11.baseType=DIRECTORY +49.baseType=DIRECTORY +21.baseType=DIRECTORY +30.baseType=DIRECTORY +0.set=NATIVE_RESOURCE +13.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +56.set=NATIVE_RESOURCE +0.baseType=DIRECTORY +7.set=NATIVE_RESOURCE +45.set=NATIVE_RESOURCE +3.path=lib/x86/libfb.so +40.path=lib/x86_64/libjsinspector.so +50.path=lib/armeabi-v7a/libjscexecutor.so +34.set=NATIVE_RESOURCE +60.path=lib/arm64-v8a/libfb.so +7.path=lib/x86_64/libjscexecutor.so +44.path=lib/arm64-v8a/libyoga.so +23.set=NATIVE_RESOURCE +12.baseType=DIRECTORY +54.path=lib/arm64-v8a/libjsinspector.so +3.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +59.baseType=DIRECTORY +40.baseType=DIRECTORY +22.baseType=DIRECTORY +31.baseType=DIRECTORY +40.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +20.path=lib/armeabi-v7a/libglog_init.so +12.set=NATIVE_RESOURCE +50.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +48.path=lib/x86/libjsinspector.so +30.path=lib/arm64-v8a/libnative-filters.so +60.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +58.path=lib/armeabi-v7a/libc++_shared.so +7.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +44.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +19.set=NATIVE_RESOURCE +24.path=lib/arm64-v8a/libimagepipeline.so +52.set=NATIVE_RESOURCE +54.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +34.path=lib/armeabi-v7a/libjsc.so +3.set=NATIVE_RESOURCE +18.path=lib/arm64-v8a/libjsc.so +20.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +41.set=NATIVE_RESOURCE +59.set=NATIVE_RESOURCE +48.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +28.path=lib/x86/libyoga.so +30.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +10.path=lib/x86_64/libimagepipeline.so +58.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +13.baseType=DIRECTORY +50.baseType=DIRECTORY +41.baseType=DIRECTORY +38.path=lib/arm64-v8a/libnative-imagetranscoder.so +32.baseType=DIRECTORY +30.set=NATIVE_RESOURCE +48.set=NATIVE_RESOURCE +24.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +34.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +1.baseType=DIRECTORY +14.path=lib/x86_64/libfolly_futures.so +37.set=DEX +18.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +28.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +10.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +26.set=NATIVE_RESOURCE +38.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +0.path=lib/arm64-v8a/libjscexecutor.so +15.set=NATIVE_RESOURCE +14.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +14.baseType=DIRECTORY +23.baseType=DIRECTORY +60.baseType=DIRECTORY +51.baseType=DIRECTORY +42.baseType=DIRECTORY +33.baseType=DIRECTORY +55.set=NATIVE_RESOURCE +4.path=lib/armeabi-v7a/libfolly_futures.so +2.baseType=DIRECTORY +41.path=lib/armeabi-v7a/libyoga.so +6.set=NATIVE_RESOURCE +51.path=lib/arm64-v8a/libglog_init.so +0.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +44.set=NATIVE_RESOURCE +8.path=lib/armeabi-v7a/libfb.so +45.path=lib/x86_64/libyoga.so +33.set=NATIVE_RESOURCE +55.path=lib/x86_64/libfolly_json.so +4.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +41.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +15.baseType=DIRECTORY +24.baseType=DIRECTORY +21.path=lib/x86/libfolly_futures.so +22.set=NATIVE_RESOURCE +52.baseType=DIRECTORY +43.baseType=DIRECTORY +34.baseType=DIRECTORY +51.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +49.path=lib/x86/libfolly_json.so +31.path=lib/armeabi-v7a/libfolly_json.so +59.path=lib/armeabi-v7a/libnative-imagetranscoder.so +8.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +11.set=NATIVE_RESOURCE +45.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +29.set=NATIVE_RESOURCE +3.baseType=DIRECTORY +25.path=lib/arm64-v8a/libjsijniprofiler.so +55.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +35.path=lib/x86/libglog_init.so +18.set=NATIVE_RESOURCE +19.path=lib/x86/libjscexecutor.so +21.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +51.set=NATIVE_RESOURCE +49.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +29.path=lib/x86_64/libc++_shared.so +31.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +11.path=lib/arm64-v8a/libfolly_json.so +59.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +2.set=NATIVE_RESOURCE +39.path=lib/x86_64/libglog_init.so +40.set=NATIVE_RESOURCE +58.set=NATIVE_RESOURCE +25.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +16.baseType=DIRECTORY +25.baseType=DIRECTORY +53.baseType=DIRECTORY +44.baseType=DIRECTORY +35.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +9.set=NATIVE_RESOURCE +15.path=lib/x86_64/libnative-imagetranscoder.so +47.set=NATIVE_RESOURCE +19.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +4.baseType=DIRECTORY +29.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +11.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +36.set=NATIVE_RESOURCE +39.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +1.path=lib/arm64-v8a/libfolly_futures.so +25.set=NATIVE_RESOURCE +15.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +14.set=NATIVE_RESOURCE +35.baseType=DIRECTORY +26.baseType=DIRECTORY +17.baseType=DIRECTORY +54.baseType=DIRECTORY +45.baseType=DIRECTORY +5.path=lib/armeabi-v7a/libjsinspector.so +42.path=lib/x86_64/libjsc.so +52.path=lib/x86/libreactnativejni.so +5.baseType=DIRECTORY +1.base=C\:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\transforms\\mergeJniLibs\\debug\\0 +54.set=NATIVE_RESOURCE +9.path=lib/x86/libjsc.so +46.path=lib/armeabi-v7a/libreactnativejni.so +5.set=NATIVE_RESOURCE +43.set=NATIVE_RESOURCE diff --git a/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/gAORdFYV140fjJeF56D_FQhPRik= b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/gAORdFYV140fjJeF56D_FQhPRik= new file mode 100644 index 0000000..90bf726 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/gAORdFYV140fjJeF56D_FQhPRik= differ diff --git a/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/pXPIWprhb9kmCAtmQ0MQkb829js= b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/pXPIWprhb9kmCAtmQ0MQkb829js= new file mode 100644 index 0000000..b739058 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/pXPIWprhb9kmCAtmQ0MQkb829js= differ diff --git a/MemoApp/android/app/build/intermediates/instant_app_manifest/debug/AndroidManifest.xml b/MemoApp/android/app/build/intermediates/instant_app_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..44f4bc4 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/instant_app_manifest/debug/AndroidManifest.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/instant_app_manifest/debug/output.json b/MemoApp/android/app/build/intermediates/instant_app_manifest/debug/output.json new file mode 100644 index 0000000..3991f11 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/instant_app_manifest/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_APP_MANIFEST"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.memoapp","split":"","minSdkVersion":"16"}}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/instant_run_merged_manifests/debug/output.json b/MemoApp/android/app/build/intermediates/instant_run_merged_manifests/debug/output.json new file mode 100644 index 0000000..4d64e72 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/instant_run_merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_RUN_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.memoapp","split":"","minSdkVersion":"16"}}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$anim.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$anim.class new file mode 100644 index 0000000..9df07c2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$anim.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$attr.class new file mode 100644 index 0000000..b4daaff Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$bool.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$bool.class new file mode 100644 index 0000000..f17cbe8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$bool.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$color.class new file mode 100644 index 0000000..44a7649 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$dimen.class new file mode 100644 index 0000000..413092f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$drawable.class new file mode 100644 index 0000000..d6e726a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$id.class new file mode 100644 index 0000000..bc22f27 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$integer.class new file mode 100644 index 0000000..0a9f767 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$layout.class new file mode 100644 index 0000000..2ef16f6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$string.class new file mode 100644 index 0000000..eeb27d1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$style.class new file mode 100644 index 0000000..2a0e6a5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$styleable.class new file mode 100644 index 0000000..3a5fd36 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R.class new file mode 100644 index 0000000..62e5660 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/appcompat/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/arch/core/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/arch/core/R.class new file mode 100644 index 0000000..ad8ca47 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/arch/core/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$attr.class new file mode 100644 index 0000000..0b0d232 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$color.class new file mode 100644 index 0000000..9d87164 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$dimen.class new file mode 100644 index 0000000..bd161f5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$drawable.class new file mode 100644 index 0000000..f782260 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$id.class new file mode 100644 index 0000000..fd196a2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$integer.class new file mode 100644 index 0000000..6379cce Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$layout.class new file mode 100644 index 0000000..9641e8e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$string.class new file mode 100644 index 0000000..6cd66ee Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$style.class new file mode 100644 index 0000000..13896c4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$styleable.class new file mode 100644 index 0000000..3f2ebb8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R.class new file mode 100644 index 0000000..3c92c1c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/asynclayoutinflater/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$attr.class new file mode 100644 index 0000000..1cfa470 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$color.class new file mode 100644 index 0000000..86007ab Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$dimen.class new file mode 100644 index 0000000..8d23cfa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$drawable.class new file mode 100644 index 0000000..c979d9e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$id.class new file mode 100644 index 0000000..08fa52f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$integer.class new file mode 100644 index 0000000..c602c93 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$layout.class new file mode 100644 index 0000000..5912951 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$string.class new file mode 100644 index 0000000..48cb10d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$style.class new file mode 100644 index 0000000..ef68e88 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$styleable.class new file mode 100644 index 0000000..d7ef2cf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R.class new file mode 100644 index 0000000..b9d5d1f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/coordinatorlayout/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$attr.class new file mode 100644 index 0000000..77fdd55 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$color.class new file mode 100644 index 0000000..9fefb9a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$dimen.class new file mode 100644 index 0000000..58bb688 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$drawable.class new file mode 100644 index 0000000..02c0a46 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$id.class new file mode 100644 index 0000000..e5acca7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$integer.class new file mode 100644 index 0000000..f394ce2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$layout.class new file mode 100644 index 0000000..c45d492 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$string.class new file mode 100644 index 0000000..0429b36 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$style.class new file mode 100644 index 0000000..dcbbe25 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$styleable.class new file mode 100644 index 0000000..eef5cf6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R.class new file mode 100644 index 0000000..c0d2617 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/core/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/cursoradapter/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/cursoradapter/R.class new file mode 100644 index 0000000..90a445d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/cursoradapter/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$attr.class new file mode 100644 index 0000000..08360da Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$color.class new file mode 100644 index 0000000..4276ee5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$dimen.class new file mode 100644 index 0000000..bbf3773 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$drawable.class new file mode 100644 index 0000000..1b74fd8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$id.class new file mode 100644 index 0000000..e902aa3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$integer.class new file mode 100644 index 0000000..cb06e1c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$layout.class new file mode 100644 index 0000000..b577ba9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$string.class new file mode 100644 index 0000000..8e337e1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$style.class new file mode 100644 index 0000000..3883cee Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$styleable.class new file mode 100644 index 0000000..eaaa6f7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R.class new file mode 100644 index 0000000..dc186f0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/customview/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/documentfile/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/documentfile/R.class new file mode 100644 index 0000000..725dd2c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/documentfile/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$attr.class new file mode 100644 index 0000000..a3f9035 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$color.class new file mode 100644 index 0000000..411d150 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$dimen.class new file mode 100644 index 0000000..2f49bb1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$drawable.class new file mode 100644 index 0000000..660a937 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$id.class new file mode 100644 index 0000000..81631f3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$integer.class new file mode 100644 index 0000000..3f72a9a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$layout.class new file mode 100644 index 0000000..1d72d0e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$string.class new file mode 100644 index 0000000..096bb71 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$style.class new file mode 100644 index 0000000..2f80453 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$styleable.class new file mode 100644 index 0000000..67f25d9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R.class new file mode 100644 index 0000000..f5e153d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/drawerlayout/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$attr.class new file mode 100644 index 0000000..a514956 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$color.class new file mode 100644 index 0000000..82e10dd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$dimen.class new file mode 100644 index 0000000..0908cd2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$drawable.class new file mode 100644 index 0000000..3a42e68 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$id.class new file mode 100644 index 0000000..5c4902c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$integer.class new file mode 100644 index 0000000..f85ce47 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$layout.class new file mode 100644 index 0000000..87888b5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$string.class new file mode 100644 index 0000000..2057e82 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$style.class new file mode 100644 index 0000000..b5accf4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$styleable.class new file mode 100644 index 0000000..0101f15 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R.class new file mode 100644 index 0000000..681d80b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/fragment/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/interpolator/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/interpolator/R.class new file mode 100644 index 0000000..44d2989 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/interpolator/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$attr.class new file mode 100644 index 0000000..8b1b643 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$color.class new file mode 100644 index 0000000..159720a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$dimen.class new file mode 100644 index 0000000..4b8c709 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$drawable.class new file mode 100644 index 0000000..a4fe8fa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$id.class new file mode 100644 index 0000000..0dce59f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$integer.class new file mode 100644 index 0000000..62e7da0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$layout.class new file mode 100644 index 0000000..647f243 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$string.class new file mode 100644 index 0000000..07cc4f2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$style.class new file mode 100644 index 0000000..6a45823 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$styleable.class new file mode 100644 index 0000000..7533e81 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R.class new file mode 100644 index 0000000..c811d97 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreui/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$attr.class new file mode 100644 index 0000000..79047aa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$color.class new file mode 100644 index 0000000..2bdd2c4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$dimen.class new file mode 100644 index 0000000..a3820b6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$drawable.class new file mode 100644 index 0000000..54a2fbd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$id.class new file mode 100644 index 0000000..0c42e3a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$integer.class new file mode 100644 index 0000000..6d4a798 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$layout.class new file mode 100644 index 0000000..63000e6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$string.class new file mode 100644 index 0000000..53e795a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$style.class new file mode 100644 index 0000000..790c620 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$styleable.class new file mode 100644 index 0000000..8f98e1e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R.class new file mode 100644 index 0000000..458cb7f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/legacy/coreutils/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/R.class new file mode 100644 index 0000000..d3d76af Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/livedata/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/livedata/R.class new file mode 100644 index 0000000..56f72f3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/livedata/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/livedata/core/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/livedata/core/R.class new file mode 100644 index 0000000..73cdabc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/livedata/core/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/viewmodel/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/viewmodel/R.class new file mode 100644 index 0000000..dc6def1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/lifecycle/viewmodel/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$attr.class new file mode 100644 index 0000000..9a1235d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$color.class new file mode 100644 index 0000000..980af0a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$dimen.class new file mode 100644 index 0000000..589a47e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$drawable.class new file mode 100644 index 0000000..8fcba77 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$id.class new file mode 100644 index 0000000..7f3e333 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$integer.class new file mode 100644 index 0000000..d24aee1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$layout.class new file mode 100644 index 0000000..e9d567f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$string.class new file mode 100644 index 0000000..6cc9705 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$style.class new file mode 100644 index 0000000..0d4b9cd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$styleable.class new file mode 100644 index 0000000..f594b99 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R.class new file mode 100644 index 0000000..d513f86 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/loader/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/localbroadcastmanager/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/localbroadcastmanager/R.class new file mode 100644 index 0000000..4f51822 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/localbroadcastmanager/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/print/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/print/R.class new file mode 100644 index 0000000..139cfc9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/print/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$attr.class new file mode 100644 index 0000000..59c376b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$color.class new file mode 100644 index 0000000..4e391a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$dimen.class new file mode 100644 index 0000000..1ee4a05 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$drawable.class new file mode 100644 index 0000000..e77d678 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$id.class new file mode 100644 index 0000000..086554b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$integer.class new file mode 100644 index 0000000..57f8e60 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$layout.class new file mode 100644 index 0000000..e131562 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$string.class new file mode 100644 index 0000000..efe7105 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$style.class new file mode 100644 index 0000000..f648d51 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$styleable.class new file mode 100644 index 0000000..ac68e93 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R.class new file mode 100644 index 0000000..889a638 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/slidingpanelayout/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$attr.class new file mode 100644 index 0000000..970bd17 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$color.class new file mode 100644 index 0000000..0580728 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$dimen.class new file mode 100644 index 0000000..982c051 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$drawable.class new file mode 100644 index 0000000..bd4072f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$id.class new file mode 100644 index 0000000..7fda45f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$integer.class new file mode 100644 index 0000000..b8c9cb8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$layout.class new file mode 100644 index 0000000..89ef60f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$string.class new file mode 100644 index 0000000..25fa898 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$style.class new file mode 100644 index 0000000..fd3380f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$styleable.class new file mode 100644 index 0000000..5b6de16 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R.class new file mode 100644 index 0000000..e6bcb3c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/swiperefreshlayout/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$attr.class new file mode 100644 index 0000000..3fde660 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$color.class new file mode 100644 index 0000000..ae70f19 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$dimen.class new file mode 100644 index 0000000..0f385c6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$drawable.class new file mode 100644 index 0000000..8bc1c29 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$id.class new file mode 100644 index 0000000..3c33f7f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$integer.class new file mode 100644 index 0000000..7fc96bb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$layout.class new file mode 100644 index 0000000..fd89c64 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$string.class new file mode 100644 index 0000000..b2dd631 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$style.class new file mode 100644 index 0000000..700d46f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$styleable.class new file mode 100644 index 0000000..2d94b1a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R.class new file mode 100644 index 0000000..f509f8d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/vectordrawable/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/versionedparcelable/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/versionedparcelable/R.class new file mode 100644 index 0000000..a63160c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/versionedparcelable/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$attr.class new file mode 100644 index 0000000..b390d8d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$color.class new file mode 100644 index 0000000..c18e16f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$dimen.class new file mode 100644 index 0000000..0f4b749 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$drawable.class new file mode 100644 index 0000000..baeeaeb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$id.class new file mode 100644 index 0000000..042f4a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$integer.class new file mode 100644 index 0000000..5f6b0d0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$layout.class new file mode 100644 index 0000000..0c20db6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$string.class new file mode 100644 index 0000000..5b9d242 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$style.class new file mode 100644 index 0000000..2579636 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$styleable.class new file mode 100644 index 0000000..4f038d0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R.class new file mode 100644 index 0000000..f54591a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/viewpager/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$attr.class new file mode 100644 index 0000000..bf7e672 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$id.class new file mode 100644 index 0000000..5d9d39e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$styleable.class new file mode 100644 index 0000000..29c9fd7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R.class new file mode 100644 index 0000000..8a2d2ba Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$attr.class new file mode 100644 index 0000000..93e3f6a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$id.class new file mode 100644 index 0000000..482a251 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$styleable.class new file mode 100644 index 0000000..261c9eb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R.class new file mode 100644 index 0000000..d63dad8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/fbcore/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/fbcore/R.class new file mode 100644 index 0000000..e0b3ed1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/fbcore/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/R.class new file mode 100644 index 0000000..d11a8ad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/backends/okhttp3/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/backends/okhttp3/R.class new file mode 100644 index 0000000..8a210e2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/backends/okhttp3/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipelinebase/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipelinebase/R.class new file mode 100644 index 0000000..5eaaecf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipelinebase/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/nativefilters/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/nativefilters/R.class new file mode 100644 index 0000000..35a2a57 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/nativefilters/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/nativeimagetranscoder/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/nativeimagetranscoder/R.class new file mode 100644 index 0000000..bf97cb2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/nativeimagetranscoder/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/PackageList.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/PackageList.class new file mode 100644 index 0000000..fbb55e0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/PackageList.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$anim.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$anim.class new file mode 100644 index 0000000..988dadf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$anim.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$attr.class new file mode 100644 index 0000000..442f784 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$bool.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$bool.class new file mode 100644 index 0000000..28b52c0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$bool.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$color.class new file mode 100644 index 0000000..63a6adc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$dimen.class new file mode 100644 index 0000000..fbfda84 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$drawable.class new file mode 100644 index 0000000..98d57fb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$id.class new file mode 100644 index 0000000..24b1e52 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$integer.class new file mode 100644 index 0000000..d8bf20d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$layout.class new file mode 100644 index 0000000..ea22f49 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$string.class new file mode 100644 index 0000000..c7ce27e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$style.class new file mode 100644 index 0000000..d4bcfe5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$styleable.class new file mode 100644 index 0000000..25a6c09 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$xml.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$xml.class new file mode 100644 index 0000000..101a6ca Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$xml.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R.class new file mode 100644 index 0000000..b32e0d6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/soloader/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/soloader/R.class new file mode 100644 index 0000000..b48c045 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/soloader/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/BuildConfig.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/BuildConfig.class new file mode 100644 index 0000000..580bbc0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/BuildConfig.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainActivity.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainActivity.class new file mode 100644 index 0000000..717b246 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainActivity.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainApplication$1.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainApplication$1.class new file mode 100644 index 0000000..3f82dd1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainApplication$1.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainApplication.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainApplication.class new file mode 100644 index 0000000..89023c1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/MainApplication.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$anim.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$anim.class new file mode 100644 index 0000000..e6f7ab2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$anim.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$attr.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$attr.class new file mode 100644 index 0000000..7c7dd93 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$attr.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$bool.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$bool.class new file mode 100644 index 0000000..f88787e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$bool.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$color.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$color.class new file mode 100644 index 0000000..2e35560 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$color.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$dimen.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$dimen.class new file mode 100644 index 0000000..d1cee4c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$dimen.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$drawable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$drawable.class new file mode 100644 index 0000000..7098db1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$drawable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$id.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$id.class new file mode 100644 index 0000000..2be07ad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$id.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$integer.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$integer.class new file mode 100644 index 0000000..05cf834 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$integer.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$layout.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$layout.class new file mode 100644 index 0000000..0247b01 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$layout.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$mipmap.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$mipmap.class new file mode 100644 index 0000000..61fdefe Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$mipmap.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$string.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$string.class new file mode 100644 index 0000000..29476a4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$string.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$style.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$style.class new file mode 100644 index 0000000..1d5a9b9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$style.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$styleable.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$styleable.class new file mode 100644 index 0000000..622046e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$styleable.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$xml.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$xml.class new file mode 100644 index 0000000..37964f5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R$xml.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R.class new file mode 100644 index 0000000..033d444 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/memoapp/R.class differ diff --git a/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/webkit/androidjsc/R.class b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/webkit/androidjsc/R.class new file mode 100644 index 0000000..91c88dc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/webkit/androidjsc/R.class differ diff --git a/MemoApp/android/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml b/MemoApp/android/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml new file mode 100644 index 0000000..e71aaaf --- /dev/null +++ b/MemoApp/android/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/merged_manifests/debug/output.json b/MemoApp/android/app/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000..da404fc --- /dev/null +++ b/MemoApp/android/app/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.memoapp","split":"","minSdkVersion":"16"}}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json b/MemoApp/android/app/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json new file mode 100644 index 0000000..5875ae5 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"METADATA_FEATURE_MANIFEST"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{}}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/processed_res/debug/processDebugResources/out/output.json b/MemoApp/android/app/build/intermediates/processed_res/debug/processDebugResources/out/output.json new file mode 100644 index 0000000..5165691 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/processed_res/debug/processDebugResources/out/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"PROCESSED_RES"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"resources-debug.ap_","properties":{"packageId":"com.memoapp","split":"","minSdkVersion":"16"}}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/processed_res/debug/processDebugResources/out/resources-debug.ap_ b/MemoApp/android/app/build/intermediates/processed_res/debug/processDebugResources/out/resources-debug.ap_ new file mode 100644 index 0000000..b739058 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/processed_res/debug/processDebugResources/out/resources-debug.ap_ differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat new file mode 100644 index 0000000..1389f33 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat new file mode 100644 index 0000000..0f7b2a2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat new file mode 100644 index 0000000..23c46a5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat new file mode 100644 index 0000000..8a1d545 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat new file mode 100644 index 0000000..f6564ae Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat new file mode 100644 index 0000000..814dc68 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat new file mode 100644 index 0000000..e0c7866 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat new file mode 100644 index 0000000..88e362f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat new file mode 100644 index 0000000..c42e9d2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat new file mode 100644 index 0000000..d31440b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat new file mode 100644 index 0000000..7d28119 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat new file mode 100644 index 0000000..e884846 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_fade_in.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_fade_in.xml.flat new file mode 100644 index 0000000..955b11f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_fade_in.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_fade_out.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_fade_out.xml.flat new file mode 100644 index 0000000..089ceec Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_fade_out.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_push_up_in.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_push_up_in.xml.flat new file mode 100644 index 0000000..7333aa5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_push_up_in.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_push_up_out.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_push_up_out.xml.flat new file mode 100644 index 0000000..14a4465 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_push_up_out.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_slide_down.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_slide_down.xml.flat new file mode 100644 index 0000000..28a8acb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_slide_down.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_slide_up.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_slide_up.xml.flat new file mode 100644 index 0000000..2eb1121 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/anim_catalyst_slide_up.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000..964be99 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000..c5ce840 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat new file mode 100644 index 0000000..f772034 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat new file mode 100644 index 0000000..99a5e5d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat new file mode 100644 index 0000000..a59390f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat new file mode 100644 index 0000000..07c6f16 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat new file mode 100644 index 0000000..996accf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat new file mode 100644 index 0000000..e261a18 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat new file mode 100644 index 0000000..5b49489 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat new file mode 100644 index 0000000..f409657 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat new file mode 100644 index 0000000..dbd0f3d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat new file mode 100644 index 0000000..f907074 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000..985c201 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat new file mode 100644 index 0000000..0765536 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat new file mode 100644 index 0000000..30ef3b3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat new file mode 100644 index 0000000..024c609 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat new file mode 100644 index 0000000..6a9db8d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat new file mode 100644 index 0000000..3b5736a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat new file mode 100644 index 0000000..174c59a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat new file mode 100644 index 0000000..ec9e60d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat new file mode 100644 index 0000000..dfea8ec Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat new file mode 100644 index 0000000..4a8bc47 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat new file mode 100644 index 0000000..84fb75e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat new file mode 100644 index 0000000..289bbca Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat new file mode 100644 index 0000000..af1072c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat new file mode 100644 index 0000000..9db933a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat new file mode 100644 index 0000000..5ef06da Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat new file mode 100644 index 0000000..d05b633 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat new file mode 100644 index 0000000..a538893 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat new file mode 100644 index 0000000..bf20d27 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat new file mode 100644 index 0000000..27c3bcb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..4025f6b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..6cdd201 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..39f9edb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..aa6fea4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..cecbf43 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000..f89e02f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000..e535765 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..9a1653c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000..9f2b068 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..e7e33c5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..6710193 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..d86ada2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000..f44f034 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000..92e2f94 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000..de7ea7c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000..cd1b7d7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000..8fb4cc8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000..d16432e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000..5de2197 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000..2876fd6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..48189bf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000..ccafcb8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000..7e5224e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000..35fc584 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000..85c1a5c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000..8d88a2f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000..cbbe56c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000..9022920 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000..7e5d170 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000..90f68be Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000..5d3522f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000..dc893b5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..b65e9f7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..e615b91 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..f49269f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..d283eb2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..4fcba95 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000..c278c33 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000..138dfea Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000..73b1b11 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000..91e2fa7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000..2c10085 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000..57f1d5b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..10fc58d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..a74167e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..ee1d476 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..f997352 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000..c48c52a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000..70947c7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000..d06c5c0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000..8f2676d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000..9034d7c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..2c06fe1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..fdc3424 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..54fd1b1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..187cf2a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..0a894d8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..59fb2f8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..b4631b7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..5d5c2a3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..c412145 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..509d513 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..16412dd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..8eff1f9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..4262798 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..e3d8d43 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..e141282 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..47454a5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..46b0837 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..93d265d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..c01bcec Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..9ec524e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000..405fc30 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000..96c264e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..794b4a6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000..ce769de Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..4c65155 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..df60b3d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..4c0a8ce Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000..61c15a8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000..7ec73ea Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000..655ddf3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000..8838efa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000..8af2232 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000..af01c3a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000..efaa54a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000..f879fc0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..448dde4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000..7e53b3d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000..b48ec36 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000..3d92141 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000..9d1c095 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000..6612ac4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000..e1071c3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000..1f174aa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000..33af84b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000..94640f8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000..ae0d5cd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000..7173c5c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..78ca3d6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..1478856 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..aac569c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..9e1538e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..d2b9367 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000..0c58435 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000..27e4d4a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000..3e63eed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000..ae295bb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000..5a66724 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000..3ce57a6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..ef7039f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..15ab3c7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..cef024a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..7fa5b82 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000..7d9bd2d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000..4ad8e54 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000..bd71d3b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000..7f9c032 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000..7b10780 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat new file mode 100644 index 0000000..52a1e9d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat new file mode 100644 index 0000000..d1c2c58 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000..8da853e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat new file mode 100644 index 0000000..ffa434e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat new file mode 100644 index 0000000..42d1534 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat new file mode 100644 index 0000000..21444b2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat new file mode 100644 index 0000000..d93a07d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000..8123c99 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..83a49db Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..a70d951 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..b5e2cc7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..8b6f429 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..a3ddd32 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000..cabe7d6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000..3875bc9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..48c5490 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000..eadfe5f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..a406102 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..3cf27e3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..65eb159 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000..ea4c3e2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000..7f6f323 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000..017ab6e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000..558e411 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000..af9ec92 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000..3b59ae3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000..522d8fd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000..cf6ed89 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..e28a510 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000..434c977 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000..901e285 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000..1ac0131 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000..6b2e839 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000..403c115 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000..fbe0b1c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000..2e2c308 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000..460314c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000..5115d43 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000..a0b8e28 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000..fa594a9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..2d627ad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..3417472 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..dba5136 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..501edbc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..c041b84 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000..3e7f274 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000..845872b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000..2a758e4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000..46d032c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000..2122a9f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000..8b89f6a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..c70f281 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..13bd223 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..b9c93d6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..e13ed41 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000..ff7f117 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000..5af6fce Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000..1cd6953 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000..174e949 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000..c7207ba Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..9f81165 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..8fe4edc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..09905b4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..56bac31 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..85ae5c6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000..c4a81c9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000..7c4ec26 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..f625ec3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000..4b72504 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..ee24d22 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..d91d5af Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..36ab28e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000..e34c973 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000..3db1f92 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000..d4ec7e7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000..7b33ace Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000..378a7a7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000..16069e8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000..ad39b6a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000..909af76 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..a31b445 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000..2c44e8c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000..e10597b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000..9698add Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000..21fe03c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000..67b233b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000..fcc2f75 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000..fbc9842 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000..fb9b57f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000..a6e474f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000..a65ea80 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000..7976556 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..8f0e408 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..51daed6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..1d8552f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..edde2e9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..dcd5b26 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000..24551a3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000..dffcdfb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000..33e6c69 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000..d2d3e1a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000..a7ae723 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000..f3a1b42 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..47719b5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..d971e09 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..2c7bb5e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..03d0f3a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..1014dde Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..c51a7d7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000..5af1ee0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000..88c4c9a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000..e121f2c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000..a060424 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..61c0a15 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000..bdfc050 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000..a7bb717 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000..e77a5d4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000..6d92d65 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000..fc335ff Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000..ed829b0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000..a9f8919 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000..e3c0163 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000..edc4fe3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000..b151d3b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000..08a3959 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000..94d6411 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000..31a157c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..99fca5e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000..f224d46 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000..dbe156c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000..1dd4dad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000..8020402 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000..82b526f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat new file mode 100644 index 0000000..2701d31 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat new file mode 100644 index 0000000..c84559f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat new file mode 100644 index 0000000..90b62be Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat new file mode 100644 index 0000000..245b723 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat new file mode 100644 index 0000000..1e9b279 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat new file mode 100644 index 0000000..bb9b6a8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat new file mode 100644 index 0000000..0292887 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000..e01fc66 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat new file mode 100644 index 0000000..6f46a5c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat new file mode 100644 index 0000000..33475e6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat new file mode 100644 index 0000000..23ca425 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat new file mode 100644 index 0000000..84d43b0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat new file mode 100644 index 0000000..ec14afd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat new file mode 100644 index 0000000..1a10cea Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat new file mode 100644 index 0000000..3b54f87 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat new file mode 100644 index 0000000..3564103 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat new file mode 100644 index 0000000..77081bd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat new file mode 100644 index 0000000..1d42898 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat new file mode 100644 index 0000000..beb1ce8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat new file mode 100644 index 0000000..e795132 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat new file mode 100644 index 0000000..95d2929 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat new file mode 100644 index 0000000..d9b4514 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat new file mode 100644 index 0000000..b55e85a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat new file mode 100644 index 0000000..7344f2c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat new file mode 100644 index 0000000..f670aa5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat new file mode 100644 index 0000000..0cdf968 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat new file mode 100644 index 0000000..d94459a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat new file mode 100644 index 0000000..57ce0e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat new file mode 100644 index 0000000..f8f9e49 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat new file mode 100644 index 0000000..9f6358b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat new file mode 100644 index 0000000..0b4d61f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat new file mode 100644 index 0000000..aaab65f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat new file mode 100644 index 0000000..838945a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat new file mode 100644 index 0000000..c457ce0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat new file mode 100644 index 0000000..8483466 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat new file mode 100644 index 0000000..b959d3c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat new file mode 100644 index 0000000..219870d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat new file mode 100644 index 0000000..cbc0251 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat new file mode 100644 index 0000000..2316a7f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_redbox_top_border_background.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_redbox_top_border_background.xml.flat new file mode 100644 index 0000000..ade34ae Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_redbox_top_border_background.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat new file mode 100644 index 0000000..29bee47 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat new file mode 100644 index 0000000..b14621f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat new file mode 100644 index 0000000..8ef0434 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat new file mode 100644 index 0000000..88b017c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat new file mode 100644 index 0000000..be7f332 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat new file mode 100644 index 0000000..e6abc8d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat new file mode 100644 index 0000000..23ff723 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat new file mode 100644 index 0000000..7bc85ef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat new file mode 100644 index 0000000..924de4b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat new file mode 100644 index 0000000..be150d3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat new file mode 100644 index 0000000..361ad74 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat new file mode 100644 index 0000000..d7e724d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat new file mode 100644 index 0000000..ea7b7d5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat new file mode 100644 index 0000000..94e2804 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat new file mode 100644 index 0000000..302db9c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat new file mode 100644 index 0000000..b01faf9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat new file mode 100644 index 0000000..0299025 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat new file mode 100644 index 0000000..ae04f4c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat new file mode 100644 index 0000000..d0a91f8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat new file mode 100644 index 0000000..b9ac668 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat new file mode 100644 index 0000000..314d3ed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat new file mode 100644 index 0000000..ea891d3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat new file mode 100644 index 0000000..55e3b75 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat new file mode 100644 index 0000000..586ca57 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat new file mode 100644 index 0000000..90a9cb3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat new file mode 100644 index 0000000..f181b69 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat new file mode 100644 index 0000000..a2b93cc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat new file mode 100644 index 0000000..5b31a58 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat new file mode 100644 index 0000000..87f2a0c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat new file mode 100644 index 0000000..105cf5e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat new file mode 100644 index 0000000..2e6df26 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat new file mode 100644 index 0000000..08850f8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat new file mode 100644 index 0000000..b056f13 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat new file mode 100644 index 0000000..b6b0a69 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat new file mode 100644 index 0000000..8e130a3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat new file mode 100644 index 0000000..e79b41e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat new file mode 100644 index 0000000..a0d9a2f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat new file mode 100644 index 0000000..a818bf0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_dev_loading_view.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_dev_loading_view.xml.flat new file mode 100644 index 0000000..a8bb805 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_dev_loading_view.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_fps_view.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_fps_view.xml.flat new file mode 100644 index 0000000..fe10ff1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_fps_view.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_action.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_action.xml.flat new file mode 100644 index 0000000..0790100 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_action.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat new file mode 100644 index 0000000..ec94a7a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat new file mode 100644 index 0000000..dad41a5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat new file mode 100644 index 0000000..1b94613 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat new file mode 100644 index 0000000..afa6772 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_item_frame.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_item_frame.xml.flat new file mode 100644 index 0000000..fced8c7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_item_frame.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_item_title.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_item_title.xml.flat new file mode 100644 index 0000000..d083eeb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_item_title.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_view.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_view.xml.flat new file mode 100644 index 0000000..c974183 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_redbox_view.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat new file mode 100644 index 0000000..322d5e2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat new file mode 100644 index 0000000..a191bfd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat new file mode 100644 index 0000000..1f40b00 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat new file mode 100644 index 0000000..b0f0d75 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat new file mode 100644 index 0000000..4887bd7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..1beda48 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat new file mode 100644 index 0000000..bfb86e8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..5864b13 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..e65af44 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..428310c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..01589b2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..e855422 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..e7e6b07 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..27107e0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat new file mode 100644 index 0000000..d50ebad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat new file mode 100644 index 0000000..dd07c08 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat new file mode 100644 index 0000000..b6c99c2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat new file mode 100644 index 0000000..e9f43ad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat new file mode 100644 index 0000000..aaf8075 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat new file mode 100644 index 0000000..526f361 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat new file mode 100644 index 0000000..5831779 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat new file mode 100644 index 0000000..8204033 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat new file mode 100644 index 0000000..4ab25c8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat new file mode 100644 index 0000000..127e7c8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat new file mode 100644 index 0000000..87aa5a4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat new file mode 100644 index 0000000..e03d2a7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat new file mode 100644 index 0000000..20efcff Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat new file mode 100644 index 0000000..4f3cfa6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat new file mode 100644 index 0000000..1d357f1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat new file mode 100644 index 0000000..0039d94 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat new file mode 100644 index 0000000..25a33d5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat new file mode 100644 index 0000000..7cdb42e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat new file mode 100644 index 0000000..7ff1fe2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat new file mode 100644 index 0000000..7aaf768 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat new file mode 100644 index 0000000..5e7bfea Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat new file mode 100644 index 0000000..dcb310f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat new file mode 100644 index 0000000..0b8982a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat new file mode 100644 index 0000000..78b42a6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat new file mode 100644 index 0000000..e10a7fa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat new file mode 100644 index 0000000..b08ccfa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat new file mode 100644 index 0000000..35c3114 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat new file mode 100644 index 0000000..0d46d31 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat new file mode 100644 index 0000000..1b2abe1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat new file mode 100644 index 0000000..c636a24 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat new file mode 100644 index 0000000..42adbd4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat new file mode 100644 index 0000000..26693e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat new file mode 100644 index 0000000..1757633 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat new file mode 100644 index 0000000..afa67e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat new file mode 100644 index 0000000..6a51a97 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat new file mode 100644 index 0000000..02bf62d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat new file mode 100644 index 0000000..0bf5c06 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat new file mode 100644 index 0000000..5b55247 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat new file mode 100644 index 0000000..f5e92ce Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat new file mode 100644 index 0000000..7527d6c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat new file mode 100644 index 0000000..8974d2b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat new file mode 100644 index 0000000..3c45958 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat new file mode 100644 index 0000000..e55d696 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat new file mode 100644 index 0000000..99fd9b9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat new file mode 100644 index 0000000..6bbc196 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat new file mode 100644 index 0000000..fc84458 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat new file mode 100644 index 0000000..36c869a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat new file mode 100644 index 0000000..f103b7f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat new file mode 100644 index 0000000..f0dc9c0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat new file mode 100644 index 0000000..d52b7e4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat new file mode 100644 index 0000000..c6e316d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat new file mode 100644 index 0000000..b984566 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat new file mode 100644 index 0000000..097723e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat new file mode 100644 index 0000000..36bb14a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat new file mode 100644 index 0000000..30292ed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat new file mode 100644 index 0000000..bae0f28 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat new file mode 100644 index 0000000..e96e4bf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat new file mode 100644 index 0000000..1fb0b02 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat new file mode 100644 index 0000000..7edf03b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat new file mode 100644 index 0000000..9e5b30e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat new file mode 100644 index 0000000..cbdf174 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat new file mode 100644 index 0000000..ece16ed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat new file mode 100644 index 0000000..992bb55 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat new file mode 100644 index 0000000..7a6e61c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat new file mode 100644 index 0000000..beaacbd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat new file mode 100644 index 0000000..f8b72c1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat new file mode 100644 index 0000000..82164df Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat new file mode 100644 index 0000000..a356cad Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat new file mode 100644 index 0000000..1fe58c9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat new file mode 100644 index 0000000..e6baacf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat new file mode 100644 index 0000000..058d108 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat new file mode 100644 index 0000000..01e3c57 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat new file mode 100644 index 0000000..628d484 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat new file mode 100644 index 0000000..bdf9261 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat new file mode 100644 index 0000000..13ea274 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat new file mode 100644 index 0000000..8bd2c4f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat new file mode 100644 index 0000000..2007041 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat new file mode 100644 index 0000000..858198d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat new file mode 100644 index 0000000..d041940 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat new file mode 100644 index 0000000..7196f86 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat new file mode 100644 index 0000000..15d7bf7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat new file mode 100644 index 0000000..d0acaf1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat new file mode 100644 index 0000000..c7c0a6c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat new file mode 100644 index 0000000..7cac5c7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat new file mode 100644 index 0000000..a67afea Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat new file mode 100644 index 0000000..0a7482f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat new file mode 100644 index 0000000..a48270a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat new file mode 100644 index 0000000..f4e3d04 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat new file mode 100644 index 0000000..d213ffa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat new file mode 100644 index 0000000..2558f71 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat new file mode 100644 index 0000000..19381bb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat new file mode 100644 index 0000000..4986f81 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat new file mode 100644 index 0000000..24ca221 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat new file mode 100644 index 0000000..dbbeaa7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat new file mode 100644 index 0000000..0e97178 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat new file mode 100644 index 0000000..8e51596 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat new file mode 100644 index 0000000..bbbc655 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat new file mode 100644 index 0000000..10bfdeb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat new file mode 100644 index 0000000..3104839 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat new file mode 100644 index 0000000..da4c229 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat new file mode 100644 index 0000000..2a6a4ba Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat new file mode 100644 index 0000000..1830926 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat new file mode 100644 index 0000000..f749e72 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat new file mode 100644 index 0000000..5b6004f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat new file mode 100644 index 0000000..5ed2869 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat new file mode 100644 index 0000000..c948fa3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/values_values.arsc.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/values_values.arsc.flat new file mode 100644 index 0000000..f5eb8b9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/values_values.arsc.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/merged/debug/xml_rn_dev_preferences.xml.flat b/MemoApp/android/app/build/intermediates/res/merged/debug/xml_rn_dev_preferences.xml.flat new file mode 100644 index 0000000..0290452 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/res/merged/debug/xml_rn_dev_preferences.xml.flat differ diff --git a/MemoApp/android/app/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/MemoApp/android/app/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000..0d47b30 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,1345 @@ +com.memoapp +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim catalyst_fade_in +anim catalyst_fade_out +anim catalyst_push_up_in +anim catalyst_push_up_out +anim catalyst_slide_down +anim catalyst_slide_up +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundImage +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr borderlessButtonStyle +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr checkboxStyle +attr checkedTextViewStyle +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSwitchThumbNormal +attr commitIcon +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr controlBackground +attr coordinatorLayoutStyle +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableSize +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr expandActivityOverflowButtonDrawable +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr firstBaselineToTopHeight +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr isLightTheme +attr itemPadding +attr keylines +attr lastBaselineToBottomHeight +attr layout +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_dodgeInsetEdges +attr layout_insetEdge +attr layout_keyline +attr lineHeight +attr listChoiceBackgroundIndicator +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr logo +attr logoDescription +attr maxButtonHeight +attr measureWithLargestChild +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr numericModifiers +attr overlapAnchor +attr overlayImage +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr placeholderImage +attr placeholderImageScaleType +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr pressedStateOverlayImage +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr retryImage +attr retryImageScaleType +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showText +attr showTitle +attr singleChoiceItemLayout +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr state_above_anchor +attr statusBarBackground +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr track +attr trackTint +attr trackTintMode +attr ttcIndex +attr viewAspectRatio +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color catalyst_redbox_background +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color notification_action_color_filter +color notification_icon_bg_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable redbox_top_border_background +drawable tooltip_frame_dark +drawable tooltip_frame_light +id ALT +id CTRL +id FUNCTION +id META +id SHIFT +id SYM +id accessibility_actions +id accessibility_hint +id accessibility_label +id accessibility_role +id accessibility_state +id accessibility_states +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id all +id always +id async +id beginning +id blocking +id bottom +id buttonPanel +id catalyst_redbox_title +id center +id centerCrop +id centerInside +id center_horizontal +id center_vertical +id checkbox +id chronometer +id clip_horizontal +id clip_vertical +id collapseActionView +id content +id contentPanel +id custom +id customPanel +id decor_content_parent +id default_activity_button +id disableHome +id edit_query +id end +id expand_activities_button +id expanded_menu +id fill +id fill_horizontal +id fill_vertical +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id focusCrop +id forever +id fps_text +id group_divider +id home +id homeAsUp +id icon +id icon_group +id ifRoom +id image +id info +id italic +id left +id line1 +id line3 +id listMode +id list_item +id message +id middle +id multiply +id never +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id parentPanel +id progress_circular +id progress_horizontal +id radio +id react_test_id +id right +id right_icon +id right_side +id rn_frame_file +id rn_frame_method +id rn_redbox_dismiss_button +id rn_redbox_line_separator +id rn_redbox_loading_indicator +id rn_redbox_reload_button +id rn_redbox_report_button +id rn_redbox_report_label +id rn_redbox_stack +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id shortcut +id showCustom +id showHome +id showTitle +id spacer +id split_action_bar +id src_atop +id src_in +id src_over +id start +id submenuarrow +id submit_area +id tabMode +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id uniform +id up +id useLogo +id view_tag_instance_handle +id view_tag_native_id +id withText +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer react_native_dev_server_port +integer react_native_inspector_proxy_port +integer status_bar_notification_info_maxnum +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout dev_loading_view +layout fps_view +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +layout redbox_item_frame +layout redbox_item_title +layout redbox_view +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +mipmap ic_launcher +mipmap ic_launcher_round +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string alert_description +string app_name +string catalyst_change_bundle_location +string catalyst_copy_button +string catalyst_debug +string catalyst_debug_chrome +string catalyst_debug_chrome_stop +string catalyst_debug_connecting +string catalyst_debug_error +string catalyst_debug_nuclide +string catalyst_debug_nuclide_error +string catalyst_debug_stop +string catalyst_dismiss_button +string catalyst_heap_capture +string catalyst_hot_reloading +string catalyst_hot_reloading_auto_disable +string catalyst_hot_reloading_auto_enable +string catalyst_hot_reloading_stop +string catalyst_inspector +string catalyst_loading_from_url +string catalyst_perf_monitor +string catalyst_perf_monitor_stop +string catalyst_reload +string catalyst_reload_button +string catalyst_reload_error +string catalyst_report_button +string catalyst_sample_profiler_disable +string catalyst_sample_profiler_enable +string catalyst_settings +string catalyst_settings_title +string combobox_description +string header_description +string image_description +string imagebutton_description +string link_description +string menu_description +string menubar_description +string menuitem_description +string progressbar_description +string radiogroup_description +string rn_tab_description +string scrollbar_description +string search_description +string search_menu_title +string spinbutton_description +string state_busy_description +string state_collapsed_description +string state_expanded_description +string state_mixed_description +string state_off_description +string state_on_description +string status_bar_notification_info_overflow +string summary_description +string tablist_description +string timer_description +string toolbar_description +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Catalyst_RedBox +style AppTheme +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_DialogWindowTitle_AppCompat +style Base_DialogWindowTitleBackground_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style CalendarDatePickerDialog +style CalendarDatePickerStyle +style ClockTimePickerDialog +style ClockTimePickerStyle +style DialogAnimationFade +style DialogAnimationSlide +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style SpinnerDatePickerDialog +style SpinnerDatePickerStyle +style SpinnerTimePickerDialog +style SpinnerTimePickerStyle +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style Theme +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Catalyst +style Theme_Catalyst_RedBox +style Theme_FullScreenDialog +style Theme_FullScreenDialogAnimatedFade +style Theme_FullScreenDialogAnimatedSlide +style Theme_ReactNative_AppCompat_Light +style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Support_CoordinatorLayout +style redboxButton +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration +styleable AnimatedStateListDrawableItem android_id android_drawable +styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps +styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable ButtonBarLayout allowStacking +styleable ColorStateListItem android_color android_alpha alpha +styleable CompoundButton android_button buttonTint buttonTintMode +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY +styleable GradientColorItem android_color android_offset +styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior +styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow +styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme +styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily fontFamily textAllCaps +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_theme android_focusable paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewStubCompat android_id android_layout android_inflatedId +xml rn_dev_preferences diff --git a/MemoApp/android/app/build/intermediates/signing_config/debug/out/signing-config.json b/MemoApp/android/app/build/intermediates/signing_config/debug/out/signing-config.json new file mode 100644 index 0000000..1fcfa3e --- /dev/null +++ b/MemoApp/android/app/build/intermediates/signing_config/debug/out/signing-config.json @@ -0,0 +1 @@ +{"mName":"debug","mStoreFile":"C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\debug.keystore","mStorePassword":"android","mKeyAlias":"androiddebugkey","mKeyPassword":"android","mStoreType":"jks","mV1SigningEnabled":true,"mV2SigningEnabled":true} \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/symbols/debug/R.txt b/MemoApp/android/app/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000..546248c --- /dev/null +++ b/MemoApp/android/app/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,1819 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim catalyst_fade_in 0x7f01000c +int anim catalyst_fade_out 0x7f01000d +int anim catalyst_push_up_in 0x7f01000e +int anim catalyst_push_up_out 0x7f01000f +int anim catalyst_slide_down 0x7f010010 +int anim catalyst_slide_up 0x7f010011 +int attr actionBarDivider 0x7f020000 +int attr actionBarItemBackground 0x7f020001 +int attr actionBarPopupTheme 0x7f020002 +int attr actionBarSize 0x7f020003 +int attr actionBarSplitStyle 0x7f020004 +int attr actionBarStyle 0x7f020005 +int attr actionBarTabBarStyle 0x7f020006 +int attr actionBarTabStyle 0x7f020007 +int attr actionBarTabTextStyle 0x7f020008 +int attr actionBarTheme 0x7f020009 +int attr actionBarWidgetTheme 0x7f02000a +int attr actionButtonStyle 0x7f02000b +int attr actionDropDownStyle 0x7f02000c +int attr actionLayout 0x7f02000d +int attr actionMenuTextAppearance 0x7f02000e +int attr actionMenuTextColor 0x7f02000f +int attr actionModeBackground 0x7f020010 +int attr actionModeCloseButtonStyle 0x7f020011 +int attr actionModeCloseDrawable 0x7f020012 +int attr actionModeCopyDrawable 0x7f020013 +int attr actionModeCutDrawable 0x7f020014 +int attr actionModeFindDrawable 0x7f020015 +int attr actionModePasteDrawable 0x7f020016 +int attr actionModePopupWindowStyle 0x7f020017 +int attr actionModeSelectAllDrawable 0x7f020018 +int attr actionModeShareDrawable 0x7f020019 +int attr actionModeSplitBackground 0x7f02001a +int attr actionModeStyle 0x7f02001b +int attr actionModeWebSearchDrawable 0x7f02001c +int attr actionOverflowButtonStyle 0x7f02001d +int attr actionOverflowMenuStyle 0x7f02001e +int attr actionProviderClass 0x7f02001f +int attr actionViewClass 0x7f020020 +int attr activityChooserViewStyle 0x7f020021 +int attr actualImageResource 0x7f020022 +int attr actualImageScaleType 0x7f020023 +int attr actualImageUri 0x7f020024 +int attr alertDialogButtonGroupStyle 0x7f020025 +int attr alertDialogCenterButtons 0x7f020026 +int attr alertDialogStyle 0x7f020027 +int attr alertDialogTheme 0x7f020028 +int attr allowStacking 0x7f020029 +int attr alpha 0x7f02002a +int attr alphabeticModifiers 0x7f02002b +int attr arrowHeadLength 0x7f02002c +int attr arrowShaftLength 0x7f02002d +int attr autoCompleteTextViewStyle 0x7f02002e +int attr autoSizeMaxTextSize 0x7f02002f +int attr autoSizeMinTextSize 0x7f020030 +int attr autoSizePresetSizes 0x7f020031 +int attr autoSizeStepGranularity 0x7f020032 +int attr autoSizeTextType 0x7f020033 +int attr background 0x7f020034 +int attr backgroundImage 0x7f020035 +int attr backgroundSplit 0x7f020036 +int attr backgroundStacked 0x7f020037 +int attr backgroundTint 0x7f020038 +int attr backgroundTintMode 0x7f020039 +int attr barLength 0x7f02003a +int attr borderlessButtonStyle 0x7f02003b +int attr buttonBarButtonStyle 0x7f02003c +int attr buttonBarNegativeButtonStyle 0x7f02003d +int attr buttonBarNeutralButtonStyle 0x7f02003e +int attr buttonBarPositiveButtonStyle 0x7f02003f +int attr buttonBarStyle 0x7f020040 +int attr buttonGravity 0x7f020041 +int attr buttonIconDimen 0x7f020042 +int attr buttonPanelSideLayout 0x7f020043 +int attr buttonStyle 0x7f020044 +int attr buttonStyleSmall 0x7f020045 +int attr buttonTint 0x7f020046 +int attr buttonTintMode 0x7f020047 +int attr checkboxStyle 0x7f020048 +int attr checkedTextViewStyle 0x7f020049 +int attr closeIcon 0x7f02004a +int attr closeItemLayout 0x7f02004b +int attr collapseContentDescription 0x7f02004c +int attr collapseIcon 0x7f02004d +int attr color 0x7f02004e +int attr colorAccent 0x7f02004f +int attr colorBackgroundFloating 0x7f020050 +int attr colorButtonNormal 0x7f020051 +int attr colorControlActivated 0x7f020052 +int attr colorControlHighlight 0x7f020053 +int attr colorControlNormal 0x7f020054 +int attr colorError 0x7f020055 +int attr colorPrimary 0x7f020056 +int attr colorPrimaryDark 0x7f020057 +int attr colorSwitchThumbNormal 0x7f020058 +int attr commitIcon 0x7f020059 +int attr contentDescription 0x7f02005a +int attr contentInsetEnd 0x7f02005b +int attr contentInsetEndWithActions 0x7f02005c +int attr contentInsetLeft 0x7f02005d +int attr contentInsetRight 0x7f02005e +int attr contentInsetStart 0x7f02005f +int attr contentInsetStartWithNavigation 0x7f020060 +int attr controlBackground 0x7f020061 +int attr coordinatorLayoutStyle 0x7f020062 +int attr customNavigationLayout 0x7f020063 +int attr defaultQueryHint 0x7f020064 +int attr dialogCornerRadius 0x7f020065 +int attr dialogPreferredPadding 0x7f020066 +int attr dialogTheme 0x7f020067 +int attr displayOptions 0x7f020068 +int attr divider 0x7f020069 +int attr dividerHorizontal 0x7f02006a +int attr dividerPadding 0x7f02006b +int attr dividerVertical 0x7f02006c +int attr drawableSize 0x7f02006d +int attr drawerArrowStyle 0x7f02006e +int attr dropDownListViewStyle 0x7f02006f +int attr dropdownListPreferredItemHeight 0x7f020070 +int attr editTextBackground 0x7f020071 +int attr editTextColor 0x7f020072 +int attr editTextStyle 0x7f020073 +int attr elevation 0x7f020074 +int attr expandActivityOverflowButtonDrawable 0x7f020075 +int attr fadeDuration 0x7f020076 +int attr failureImage 0x7f020077 +int attr failureImageScaleType 0x7f020078 +int attr firstBaselineToTopHeight 0x7f020079 +int attr font 0x7f02007a +int attr fontFamily 0x7f02007b +int attr fontProviderAuthority 0x7f02007c +int attr fontProviderCerts 0x7f02007d +int attr fontProviderFetchStrategy 0x7f02007e +int attr fontProviderFetchTimeout 0x7f02007f +int attr fontProviderPackage 0x7f020080 +int attr fontProviderQuery 0x7f020081 +int attr fontStyle 0x7f020082 +int attr fontVariationSettings 0x7f020083 +int attr fontWeight 0x7f020084 +int attr gapBetweenBars 0x7f020085 +int attr goIcon 0x7f020086 +int attr height 0x7f020087 +int attr hideOnContentScroll 0x7f020088 +int attr homeAsUpIndicator 0x7f020089 +int attr homeLayout 0x7f02008a +int attr icon 0x7f02008b +int attr iconTint 0x7f02008c +int attr iconTintMode 0x7f02008d +int attr iconifiedByDefault 0x7f02008e +int attr imageButtonStyle 0x7f02008f +int attr indeterminateProgressStyle 0x7f020090 +int attr initialActivityCount 0x7f020091 +int attr isLightTheme 0x7f020092 +int attr itemPadding 0x7f020093 +int attr keylines 0x7f020094 +int attr lastBaselineToBottomHeight 0x7f020095 +int attr layout 0x7f020096 +int attr layout_anchor 0x7f020097 +int attr layout_anchorGravity 0x7f020098 +int attr layout_behavior 0x7f020099 +int attr layout_dodgeInsetEdges 0x7f02009a +int attr layout_insetEdge 0x7f02009b +int attr layout_keyline 0x7f02009c +int attr lineHeight 0x7f02009d +int attr listChoiceBackgroundIndicator 0x7f02009e +int attr listDividerAlertDialog 0x7f02009f +int attr listItemLayout 0x7f0200a0 +int attr listLayout 0x7f0200a1 +int attr listMenuViewStyle 0x7f0200a2 +int attr listPopupWindowStyle 0x7f0200a3 +int attr listPreferredItemHeight 0x7f0200a4 +int attr listPreferredItemHeightLarge 0x7f0200a5 +int attr listPreferredItemHeightSmall 0x7f0200a6 +int attr listPreferredItemPaddingLeft 0x7f0200a7 +int attr listPreferredItemPaddingRight 0x7f0200a8 +int attr logo 0x7f0200a9 +int attr logoDescription 0x7f0200aa +int attr maxButtonHeight 0x7f0200ab +int attr measureWithLargestChild 0x7f0200ac +int attr multiChoiceItemLayout 0x7f0200ad +int attr navigationContentDescription 0x7f0200ae +int attr navigationIcon 0x7f0200af +int attr navigationMode 0x7f0200b0 +int attr numericModifiers 0x7f0200b1 +int attr overlapAnchor 0x7f0200b2 +int attr overlayImage 0x7f0200b3 +int attr paddingBottomNoButtons 0x7f0200b4 +int attr paddingEnd 0x7f0200b5 +int attr paddingStart 0x7f0200b6 +int attr paddingTopNoTitle 0x7f0200b7 +int attr panelBackground 0x7f0200b8 +int attr panelMenuListTheme 0x7f0200b9 +int attr panelMenuListWidth 0x7f0200ba +int attr placeholderImage 0x7f0200bb +int attr placeholderImageScaleType 0x7f0200bc +int attr popupMenuStyle 0x7f0200bd +int attr popupTheme 0x7f0200be +int attr popupWindowStyle 0x7f0200bf +int attr preserveIconSpacing 0x7f0200c0 +int attr pressedStateOverlayImage 0x7f0200c1 +int attr progressBarAutoRotateInterval 0x7f0200c2 +int attr progressBarImage 0x7f0200c3 +int attr progressBarImageScaleType 0x7f0200c4 +int attr progressBarPadding 0x7f0200c5 +int attr progressBarStyle 0x7f0200c6 +int attr queryBackground 0x7f0200c7 +int attr queryHint 0x7f0200c8 +int attr radioButtonStyle 0x7f0200c9 +int attr ratingBarStyle 0x7f0200ca +int attr ratingBarStyleIndicator 0x7f0200cb +int attr ratingBarStyleSmall 0x7f0200cc +int attr retryImage 0x7f0200cd +int attr retryImageScaleType 0x7f0200ce +int attr roundAsCircle 0x7f0200cf +int attr roundBottomEnd 0x7f0200d0 +int attr roundBottomLeft 0x7f0200d1 +int attr roundBottomRight 0x7f0200d2 +int attr roundBottomStart 0x7f0200d3 +int attr roundTopEnd 0x7f0200d4 +int attr roundTopLeft 0x7f0200d5 +int attr roundTopRight 0x7f0200d6 +int attr roundTopStart 0x7f0200d7 +int attr roundWithOverlayColor 0x7f0200d8 +int attr roundedCornerRadius 0x7f0200d9 +int attr roundingBorderColor 0x7f0200da +int attr roundingBorderPadding 0x7f0200db +int attr roundingBorderWidth 0x7f0200dc +int attr searchHintIcon 0x7f0200dd +int attr searchIcon 0x7f0200de +int attr searchViewStyle 0x7f0200df +int attr seekBarStyle 0x7f0200e0 +int attr selectableItemBackground 0x7f0200e1 +int attr selectableItemBackgroundBorderless 0x7f0200e2 +int attr showAsAction 0x7f0200e3 +int attr showDividers 0x7f0200e4 +int attr showText 0x7f0200e5 +int attr showTitle 0x7f0200e6 +int attr singleChoiceItemLayout 0x7f0200e7 +int attr spinBars 0x7f0200e8 +int attr spinnerDropDownItemStyle 0x7f0200e9 +int attr spinnerStyle 0x7f0200ea +int attr splitTrack 0x7f0200eb +int attr srcCompat 0x7f0200ec +int attr state_above_anchor 0x7f0200ed +int attr statusBarBackground 0x7f0200ee +int attr subMenuArrow 0x7f0200ef +int attr submitBackground 0x7f0200f0 +int attr subtitle 0x7f0200f1 +int attr subtitleTextAppearance 0x7f0200f2 +int attr subtitleTextColor 0x7f0200f3 +int attr subtitleTextStyle 0x7f0200f4 +int attr suggestionRowLayout 0x7f0200f5 +int attr switchMinWidth 0x7f0200f6 +int attr switchPadding 0x7f0200f7 +int attr switchStyle 0x7f0200f8 +int attr switchTextAppearance 0x7f0200f9 +int attr textAllCaps 0x7f0200fa +int attr textAppearanceLargePopupMenu 0x7f0200fb +int attr textAppearanceListItem 0x7f0200fc +int attr textAppearanceListItemSecondary 0x7f0200fd +int attr textAppearanceListItemSmall 0x7f0200fe +int attr textAppearancePopupMenuHeader 0x7f0200ff +int attr textAppearanceSearchResultSubtitle 0x7f020100 +int attr textAppearanceSearchResultTitle 0x7f020101 +int attr textAppearanceSmallPopupMenu 0x7f020102 +int attr textColorAlertDialogListItem 0x7f020103 +int attr textColorSearchUrl 0x7f020104 +int attr theme 0x7f020105 +int attr thickness 0x7f020106 +int attr thumbTextPadding 0x7f020107 +int attr thumbTint 0x7f020108 +int attr thumbTintMode 0x7f020109 +int attr tickMark 0x7f02010a +int attr tickMarkTint 0x7f02010b +int attr tickMarkTintMode 0x7f02010c +int attr tint 0x7f02010d +int attr tintMode 0x7f02010e +int attr title 0x7f02010f +int attr titleMargin 0x7f020110 +int attr titleMarginBottom 0x7f020111 +int attr titleMarginEnd 0x7f020112 +int attr titleMarginStart 0x7f020113 +int attr titleMarginTop 0x7f020114 +int attr titleMargins 0x7f020115 +int attr titleTextAppearance 0x7f020116 +int attr titleTextColor 0x7f020117 +int attr titleTextStyle 0x7f020118 +int attr toolbarNavigationButtonStyle 0x7f020119 +int attr toolbarStyle 0x7f02011a +int attr tooltipForegroundColor 0x7f02011b +int attr tooltipFrameBackground 0x7f02011c +int attr tooltipText 0x7f02011d +int attr track 0x7f02011e +int attr trackTint 0x7f02011f +int attr trackTintMode 0x7f020120 +int attr ttcIndex 0x7f020121 +int attr viewAspectRatio 0x7f020122 +int attr viewInflaterClass 0x7f020123 +int attr voiceIcon 0x7f020124 +int attr windowActionBar 0x7f020125 +int attr windowActionBarOverlay 0x7f020126 +int attr windowActionModeOverlay 0x7f020127 +int attr windowFixedHeightMajor 0x7f020128 +int attr windowFixedHeightMinor 0x7f020129 +int attr windowFixedWidthMajor 0x7f02012a +int attr windowFixedWidthMinor 0x7f02012b +int attr windowMinWidthMajor 0x7f02012c +int attr windowMinWidthMinor 0x7f02012d +int attr windowNoTitle 0x7f02012e +int bool abc_action_bar_embed_tabs 0x7f030000 +int bool abc_allow_stacked_button_bar 0x7f030001 +int bool abc_config_actionMenuItemAllCaps 0x7f030002 +int color abc_background_cache_hint_selector_material_dark 0x7f040000 +int color abc_background_cache_hint_selector_material_light 0x7f040001 +int color abc_btn_colored_borderless_text_material 0x7f040002 +int color abc_btn_colored_text_material 0x7f040003 +int color abc_color_highlight_material 0x7f040004 +int color abc_hint_foreground_material_dark 0x7f040005 +int color abc_hint_foreground_material_light 0x7f040006 +int color abc_input_method_navigation_guard 0x7f040007 +int color abc_primary_text_disable_only_material_dark 0x7f040008 +int color abc_primary_text_disable_only_material_light 0x7f040009 +int color abc_primary_text_material_dark 0x7f04000a +int color abc_primary_text_material_light 0x7f04000b +int color abc_search_url_text 0x7f04000c +int color abc_search_url_text_normal 0x7f04000d +int color abc_search_url_text_pressed 0x7f04000e +int color abc_search_url_text_selected 0x7f04000f +int color abc_secondary_text_material_dark 0x7f040010 +int color abc_secondary_text_material_light 0x7f040011 +int color abc_tint_btn_checkable 0x7f040012 +int color abc_tint_default 0x7f040013 +int color abc_tint_edittext 0x7f040014 +int color abc_tint_seek_thumb 0x7f040015 +int color abc_tint_spinner 0x7f040016 +int color abc_tint_switch_track 0x7f040017 +int color accent_material_dark 0x7f040018 +int color accent_material_light 0x7f040019 +int color background_floating_material_dark 0x7f04001a +int color background_floating_material_light 0x7f04001b +int color background_material_dark 0x7f04001c +int color background_material_light 0x7f04001d +int color bright_foreground_disabled_material_dark 0x7f04001e +int color bright_foreground_disabled_material_light 0x7f04001f +int color bright_foreground_inverse_material_dark 0x7f040020 +int color bright_foreground_inverse_material_light 0x7f040021 +int color bright_foreground_material_dark 0x7f040022 +int color bright_foreground_material_light 0x7f040023 +int color button_material_dark 0x7f040024 +int color button_material_light 0x7f040025 +int color catalyst_redbox_background 0x7f040026 +int color dim_foreground_disabled_material_dark 0x7f040027 +int color dim_foreground_disabled_material_light 0x7f040028 +int color dim_foreground_material_dark 0x7f040029 +int color dim_foreground_material_light 0x7f04002a +int color error_color_material_dark 0x7f04002b +int color error_color_material_light 0x7f04002c +int color foreground_material_dark 0x7f04002d +int color foreground_material_light 0x7f04002e +int color highlighted_text_material_dark 0x7f04002f +int color highlighted_text_material_light 0x7f040030 +int color material_blue_grey_800 0x7f040031 +int color material_blue_grey_900 0x7f040032 +int color material_blue_grey_950 0x7f040033 +int color material_deep_teal_200 0x7f040034 +int color material_deep_teal_500 0x7f040035 +int color material_grey_100 0x7f040036 +int color material_grey_300 0x7f040037 +int color material_grey_50 0x7f040038 +int color material_grey_600 0x7f040039 +int color material_grey_800 0x7f04003a +int color material_grey_850 0x7f04003b +int color material_grey_900 0x7f04003c +int color notification_action_color_filter 0x7f04003d +int color notification_icon_bg_color 0x7f04003e +int color primary_dark_material_dark 0x7f04003f +int color primary_dark_material_light 0x7f040040 +int color primary_material_dark 0x7f040041 +int color primary_material_light 0x7f040042 +int color primary_text_default_material_dark 0x7f040043 +int color primary_text_default_material_light 0x7f040044 +int color primary_text_disabled_material_dark 0x7f040045 +int color primary_text_disabled_material_light 0x7f040046 +int color ripple_material_dark 0x7f040047 +int color ripple_material_light 0x7f040048 +int color secondary_text_default_material_dark 0x7f040049 +int color secondary_text_default_material_light 0x7f04004a +int color secondary_text_disabled_material_dark 0x7f04004b +int color secondary_text_disabled_material_light 0x7f04004c +int color switch_thumb_disabled_material_dark 0x7f04004d +int color switch_thumb_disabled_material_light 0x7f04004e +int color switch_thumb_material_dark 0x7f04004f +int color switch_thumb_material_light 0x7f040050 +int color switch_thumb_normal_material_dark 0x7f040051 +int color switch_thumb_normal_material_light 0x7f040052 +int color tooltip_background_dark 0x7f040053 +int color tooltip_background_light 0x7f040054 +int dimen abc_action_bar_content_inset_material 0x7f050000 +int dimen abc_action_bar_content_inset_with_nav 0x7f050001 +int dimen abc_action_bar_default_height_material 0x7f050002 +int dimen abc_action_bar_default_padding_end_material 0x7f050003 +int dimen abc_action_bar_default_padding_start_material 0x7f050004 +int dimen abc_action_bar_elevation_material 0x7f050005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f050007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f050008 +int dimen abc_action_bar_stacked_max_height 0x7f050009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f05000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000c +int dimen abc_action_button_min_height_material 0x7f05000d +int dimen abc_action_button_min_width_material 0x7f05000e +int dimen abc_action_button_min_width_overflow_material 0x7f05000f +int dimen abc_alert_dialog_button_bar_height 0x7f050010 +int dimen abc_alert_dialog_button_dimen 0x7f050011 +int dimen abc_button_inset_horizontal_material 0x7f050012 +int dimen abc_button_inset_vertical_material 0x7f050013 +int dimen abc_button_padding_horizontal_material 0x7f050014 +int dimen abc_button_padding_vertical_material 0x7f050015 +int dimen abc_cascading_menus_min_smallest_width 0x7f050016 +int dimen abc_config_prefDialogWidth 0x7f050017 +int dimen abc_control_corner_material 0x7f050018 +int dimen abc_control_inset_material 0x7f050019 +int dimen abc_control_padding_material 0x7f05001a +int dimen abc_dialog_corner_radius_material 0x7f05001b +int dimen abc_dialog_fixed_height_major 0x7f05001c +int dimen abc_dialog_fixed_height_minor 0x7f05001d +int dimen abc_dialog_fixed_width_major 0x7f05001e +int dimen abc_dialog_fixed_width_minor 0x7f05001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f050020 +int dimen abc_dialog_list_padding_top_no_title 0x7f050021 +int dimen abc_dialog_min_width_major 0x7f050022 +int dimen abc_dialog_min_width_minor 0x7f050023 +int dimen abc_dialog_padding_material 0x7f050024 +int dimen abc_dialog_padding_top_material 0x7f050025 +int dimen abc_dialog_title_divider_material 0x7f050026 +int dimen abc_disabled_alpha_material_dark 0x7f050027 +int dimen abc_disabled_alpha_material_light 0x7f050028 +int dimen abc_dropdownitem_icon_width 0x7f050029 +int dimen abc_dropdownitem_text_padding_left 0x7f05002a +int dimen abc_dropdownitem_text_padding_right 0x7f05002b +int dimen abc_edit_text_inset_bottom_material 0x7f05002c +int dimen abc_edit_text_inset_horizontal_material 0x7f05002d +int dimen abc_edit_text_inset_top_material 0x7f05002e +int dimen abc_floating_window_z 0x7f05002f +int dimen abc_list_item_padding_horizontal_material 0x7f050030 +int dimen abc_panel_menu_list_width 0x7f050031 +int dimen abc_progress_bar_height_material 0x7f050032 +int dimen abc_search_view_preferred_height 0x7f050033 +int dimen abc_search_view_preferred_width 0x7f050034 +int dimen abc_seekbar_track_background_height_material 0x7f050035 +int dimen abc_seekbar_track_progress_height_material 0x7f050036 +int dimen abc_select_dialog_padding_start_material 0x7f050037 +int dimen abc_switch_padding 0x7f050038 +int dimen abc_text_size_body_1_material 0x7f050039 +int dimen abc_text_size_body_2_material 0x7f05003a +int dimen abc_text_size_button_material 0x7f05003b +int dimen abc_text_size_caption_material 0x7f05003c +int dimen abc_text_size_display_1_material 0x7f05003d +int dimen abc_text_size_display_2_material 0x7f05003e +int dimen abc_text_size_display_3_material 0x7f05003f +int dimen abc_text_size_display_4_material 0x7f050040 +int dimen abc_text_size_headline_material 0x7f050041 +int dimen abc_text_size_large_material 0x7f050042 +int dimen abc_text_size_medium_material 0x7f050043 +int dimen abc_text_size_menu_header_material 0x7f050044 +int dimen abc_text_size_menu_material 0x7f050045 +int dimen abc_text_size_small_material 0x7f050046 +int dimen abc_text_size_subhead_material 0x7f050047 +int dimen abc_text_size_subtitle_material_toolbar 0x7f050048 +int dimen abc_text_size_title_material 0x7f050049 +int dimen abc_text_size_title_material_toolbar 0x7f05004a +int dimen compat_button_inset_horizontal_material 0x7f05004b +int dimen compat_button_inset_vertical_material 0x7f05004c +int dimen compat_button_padding_horizontal_material 0x7f05004d +int dimen compat_button_padding_vertical_material 0x7f05004e +int dimen compat_control_corner_material 0x7f05004f +int dimen compat_notification_large_icon_max_height 0x7f050050 +int dimen compat_notification_large_icon_max_width 0x7f050051 +int dimen disabled_alpha_material_dark 0x7f050052 +int dimen disabled_alpha_material_light 0x7f050053 +int dimen highlight_alpha_material_colored 0x7f050054 +int dimen highlight_alpha_material_dark 0x7f050055 +int dimen highlight_alpha_material_light 0x7f050056 +int dimen hint_alpha_material_dark 0x7f050057 +int dimen hint_alpha_material_light 0x7f050058 +int dimen hint_pressed_alpha_material_dark 0x7f050059 +int dimen hint_pressed_alpha_material_light 0x7f05005a +int dimen notification_action_icon_size 0x7f05005b +int dimen notification_action_text_size 0x7f05005c +int dimen notification_big_circle_margin 0x7f05005d +int dimen notification_content_margin_start 0x7f05005e +int dimen notification_large_icon_height 0x7f05005f +int dimen notification_large_icon_width 0x7f050060 +int dimen notification_main_column_padding_top 0x7f050061 +int dimen notification_media_narrow_margin 0x7f050062 +int dimen notification_right_icon_size 0x7f050063 +int dimen notification_right_side_padding_top 0x7f050064 +int dimen notification_small_icon_background_padding 0x7f050065 +int dimen notification_small_icon_size_as_large 0x7f050066 +int dimen notification_subtext_size 0x7f050067 +int dimen notification_top_pad 0x7f050068 +int dimen notification_top_pad_large_text 0x7f050069 +int dimen tooltip_corner_radius 0x7f05006a +int dimen tooltip_horizontal_padding 0x7f05006b +int dimen tooltip_margin 0x7f05006c +int dimen tooltip_precise_anchor_extra_offset 0x7f05006d +int dimen tooltip_precise_anchor_threshold 0x7f05006e +int dimen tooltip_vertical_padding 0x7f05006f +int dimen tooltip_y_offset_non_touch 0x7f050070 +int dimen tooltip_y_offset_touch 0x7f050071 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f060000 +int drawable abc_action_bar_item_background_material 0x7f060001 +int drawable abc_btn_borderless_material 0x7f060002 +int drawable abc_btn_check_material 0x7f060003 +int drawable abc_btn_check_to_on_mtrl_000 0x7f060004 +int drawable abc_btn_check_to_on_mtrl_015 0x7f060005 +int drawable abc_btn_colored_material 0x7f060006 +int drawable abc_btn_default_mtrl_shape 0x7f060007 +int drawable abc_btn_radio_material 0x7f060008 +int drawable abc_btn_radio_to_on_mtrl_000 0x7f060009 +int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000a +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000b +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000c +int drawable abc_cab_background_internal_bg 0x7f06000d +int drawable abc_cab_background_top_material 0x7f06000e +int drawable abc_cab_background_top_mtrl_alpha 0x7f06000f +int drawable abc_control_background_material 0x7f060010 +int drawable abc_dialog_material_background 0x7f060011 +int drawable abc_edit_text_material 0x7f060012 +int drawable abc_ic_ab_back_material 0x7f060013 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060014 +int drawable abc_ic_clear_material 0x7f060015 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060016 +int drawable abc_ic_go_search_api_material 0x7f060017 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060018 +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f060019 +int drawable abc_ic_menu_overflow_material 0x7f06001a +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001b +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001c +int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001d +int drawable abc_ic_search_api_material 0x7f06001e +int drawable abc_ic_star_black_16dp 0x7f06001f +int drawable abc_ic_star_black_36dp 0x7f060020 +int drawable abc_ic_star_black_48dp 0x7f060021 +int drawable abc_ic_star_half_black_16dp 0x7f060022 +int drawable abc_ic_star_half_black_36dp 0x7f060023 +int drawable abc_ic_star_half_black_48dp 0x7f060024 +int drawable abc_ic_voice_search_api_material 0x7f060025 +int drawable abc_item_background_holo_dark 0x7f060026 +int drawable abc_item_background_holo_light 0x7f060027 +int drawable abc_list_divider_material 0x7f060028 +int drawable abc_list_divider_mtrl_alpha 0x7f060029 +int drawable abc_list_focused_holo 0x7f06002a +int drawable abc_list_longpressed_holo 0x7f06002b +int drawable abc_list_pressed_holo_dark 0x7f06002c +int drawable abc_list_pressed_holo_light 0x7f06002d +int drawable abc_list_selector_background_transition_holo_dark 0x7f06002e +int drawable abc_list_selector_background_transition_holo_light 0x7f06002f +int drawable abc_list_selector_disabled_holo_dark 0x7f060030 +int drawable abc_list_selector_disabled_holo_light 0x7f060031 +int drawable abc_list_selector_holo_dark 0x7f060032 +int drawable abc_list_selector_holo_light 0x7f060033 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060034 +int drawable abc_popup_background_mtrl_mult 0x7f060035 +int drawable abc_ratingbar_indicator_material 0x7f060036 +int drawable abc_ratingbar_material 0x7f060037 +int drawable abc_ratingbar_small_material 0x7f060038 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060039 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f06003a +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003b +int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003c +int drawable abc_scrubber_track_mtrl_alpha 0x7f06003d +int drawable abc_seekbar_thumb_material 0x7f06003e +int drawable abc_seekbar_tick_mark_material 0x7f06003f +int drawable abc_seekbar_track_material 0x7f060040 +int drawable abc_spinner_mtrl_am_alpha 0x7f060041 +int drawable abc_spinner_textfield_background_material 0x7f060042 +int drawable abc_switch_thumb_material 0x7f060043 +int drawable abc_switch_track_mtrl_alpha 0x7f060044 +int drawable abc_tab_indicator_material 0x7f060045 +int drawable abc_tab_indicator_mtrl_alpha 0x7f060046 +int drawable abc_text_cursor_material 0x7f060047 +int drawable abc_text_select_handle_left_mtrl_dark 0x7f060048 +int drawable abc_text_select_handle_left_mtrl_light 0x7f060049 +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f06004a +int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004b +int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004c +int drawable abc_text_select_handle_right_mtrl_light 0x7f06004d +int drawable abc_textfield_activated_mtrl_alpha 0x7f06004e +int drawable abc_textfield_default_mtrl_alpha 0x7f06004f +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f060050 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f060051 +int drawable abc_textfield_search_material 0x7f060052 +int drawable abc_vector_test 0x7f060053 +int drawable notification_action_background 0x7f060054 +int drawable notification_bg 0x7f060055 +int drawable notification_bg_low 0x7f060056 +int drawable notification_bg_low_normal 0x7f060057 +int drawable notification_bg_low_pressed 0x7f060058 +int drawable notification_bg_normal 0x7f060059 +int drawable notification_bg_normal_pressed 0x7f06005a +int drawable notification_icon_background 0x7f06005b +int drawable notification_template_icon_bg 0x7f06005c +int drawable notification_template_icon_low_bg 0x7f06005d +int drawable notification_tile_bg 0x7f06005e +int drawable notify_panel_notification_icon_bg 0x7f06005f +int drawable redbox_top_border_background 0x7f060060 +int drawable tooltip_frame_dark 0x7f060061 +int drawable tooltip_frame_light 0x7f060062 +int id ALT 0x7f070000 +int id CTRL 0x7f070001 +int id FUNCTION 0x7f070002 +int id META 0x7f070003 +int id SHIFT 0x7f070004 +int id SYM 0x7f070005 +int id accessibility_actions 0x7f070006 +int id accessibility_hint 0x7f070007 +int id accessibility_label 0x7f070008 +int id accessibility_role 0x7f070009 +int id accessibility_state 0x7f07000a +int id accessibility_states 0x7f07000b +int id action_bar 0x7f07000c +int id action_bar_activity_content 0x7f07000d +int id action_bar_container 0x7f07000e +int id action_bar_root 0x7f07000f +int id action_bar_spinner 0x7f070010 +int id action_bar_subtitle 0x7f070011 +int id action_bar_title 0x7f070012 +int id action_container 0x7f070013 +int id action_context_bar 0x7f070014 +int id action_divider 0x7f070015 +int id action_image 0x7f070016 +int id action_menu_divider 0x7f070017 +int id action_menu_presenter 0x7f070018 +int id action_mode_bar 0x7f070019 +int id action_mode_bar_stub 0x7f07001a +int id action_mode_close_button 0x7f07001b +int id action_text 0x7f07001c +int id actions 0x7f07001d +int id activity_chooser_view_content 0x7f07001e +int id add 0x7f07001f +int id alertTitle 0x7f070020 +int id all 0x7f070021 +int id always 0x7f070022 +int id async 0x7f070023 +int id beginning 0x7f070024 +int id blocking 0x7f070025 +int id bottom 0x7f070026 +int id buttonPanel 0x7f070027 +int id catalyst_redbox_title 0x7f070028 +int id center 0x7f070029 +int id centerCrop 0x7f07002a +int id centerInside 0x7f07002b +int id center_horizontal 0x7f07002c +int id center_vertical 0x7f07002d +int id checkbox 0x7f07002e +int id chronometer 0x7f07002f +int id clip_horizontal 0x7f070030 +int id clip_vertical 0x7f070031 +int id collapseActionView 0x7f070032 +int id content 0x7f070033 +int id contentPanel 0x7f070034 +int id custom 0x7f070035 +int id customPanel 0x7f070036 +int id decor_content_parent 0x7f070037 +int id default_activity_button 0x7f070038 +int id disableHome 0x7f070039 +int id edit_query 0x7f07003a +int id end 0x7f07003b +int id expand_activities_button 0x7f07003c +int id expanded_menu 0x7f07003d +int id fill 0x7f07003e +int id fill_horizontal 0x7f07003f +int id fill_vertical 0x7f070040 +int id fitBottomStart 0x7f070041 +int id fitCenter 0x7f070042 +int id fitEnd 0x7f070043 +int id fitStart 0x7f070044 +int id fitXY 0x7f070045 +int id focusCrop 0x7f070046 +int id forever 0x7f070047 +int id fps_text 0x7f070048 +int id group_divider 0x7f070049 +int id home 0x7f07004a +int id homeAsUp 0x7f07004b +int id icon 0x7f07004c +int id icon_group 0x7f07004d +int id ifRoom 0x7f07004e +int id image 0x7f07004f +int id info 0x7f070050 +int id italic 0x7f070051 +int id left 0x7f070052 +int id line1 0x7f070053 +int id line3 0x7f070054 +int id listMode 0x7f070055 +int id list_item 0x7f070056 +int id message 0x7f070057 +int id middle 0x7f070058 +int id multiply 0x7f070059 +int id never 0x7f07005a +int id none 0x7f07005b +int id normal 0x7f07005c +int id notification_background 0x7f07005d +int id notification_main_column 0x7f07005e +int id notification_main_column_container 0x7f07005f +int id parentPanel 0x7f070060 +int id progress_circular 0x7f070061 +int id progress_horizontal 0x7f070062 +int id radio 0x7f070063 +int id react_test_id 0x7f070064 +int id right 0x7f070065 +int id right_icon 0x7f070066 +int id right_side 0x7f070067 +int id rn_frame_file 0x7f070068 +int id rn_frame_method 0x7f070069 +int id rn_redbox_dismiss_button 0x7f07006a +int id rn_redbox_line_separator 0x7f07006b +int id rn_redbox_loading_indicator 0x7f07006c +int id rn_redbox_reload_button 0x7f07006d +int id rn_redbox_report_button 0x7f07006e +int id rn_redbox_report_label 0x7f07006f +int id rn_redbox_stack 0x7f070070 +int id screen 0x7f070071 +int id scrollIndicatorDown 0x7f070072 +int id scrollIndicatorUp 0x7f070073 +int id scrollView 0x7f070074 +int id search_badge 0x7f070075 +int id search_bar 0x7f070076 +int id search_button 0x7f070077 +int id search_close_btn 0x7f070078 +int id search_edit_frame 0x7f070079 +int id search_go_btn 0x7f07007a +int id search_mag_icon 0x7f07007b +int id search_plate 0x7f07007c +int id search_src_text 0x7f07007d +int id search_voice_btn 0x7f07007e +int id select_dialog_listview 0x7f07007f +int id shortcut 0x7f070080 +int id showCustom 0x7f070081 +int id showHome 0x7f070082 +int id showTitle 0x7f070083 +int id spacer 0x7f070084 +int id split_action_bar 0x7f070085 +int id src_atop 0x7f070086 +int id src_in 0x7f070087 +int id src_over 0x7f070088 +int id start 0x7f070089 +int id submenuarrow 0x7f07008a +int id submit_area 0x7f07008b +int id tabMode 0x7f07008c +int id tag_transition_group 0x7f07008d +int id tag_unhandled_key_event_manager 0x7f07008e +int id tag_unhandled_key_listeners 0x7f07008f +int id text 0x7f070090 +int id text2 0x7f070091 +int id textSpacerNoButtons 0x7f070092 +int id textSpacerNoTitle 0x7f070093 +int id time 0x7f070094 +int id title 0x7f070095 +int id titleDividerNoCustom 0x7f070096 +int id title_template 0x7f070097 +int id top 0x7f070098 +int id topPanel 0x7f070099 +int id uniform 0x7f07009a +int id up 0x7f07009b +int id useLogo 0x7f07009c +int id view_tag_instance_handle 0x7f07009d +int id view_tag_native_id 0x7f07009e +int id withText 0x7f07009f +int id wrap_content 0x7f0700a0 +int integer abc_config_activityDefaultDur 0x7f080000 +int integer abc_config_activityShortDur 0x7f080001 +int integer cancel_button_image_alpha 0x7f080002 +int integer config_tooltipAnimTime 0x7f080003 +int integer react_native_dev_server_port 0x7f080004 +int integer react_native_inspector_proxy_port 0x7f080005 +int integer status_bar_notification_info_maxnum 0x7f080006 +int layout abc_action_bar_title_item 0x7f090000 +int layout abc_action_bar_up_container 0x7f090001 +int layout abc_action_menu_item_layout 0x7f090002 +int layout abc_action_menu_layout 0x7f090003 +int layout abc_action_mode_bar 0x7f090004 +int layout abc_action_mode_close_item_material 0x7f090005 +int layout abc_activity_chooser_view 0x7f090006 +int layout abc_activity_chooser_view_list_item 0x7f090007 +int layout abc_alert_dialog_button_bar_material 0x7f090008 +int layout abc_alert_dialog_material 0x7f090009 +int layout abc_alert_dialog_title_material 0x7f09000a +int layout abc_cascading_menu_item_layout 0x7f09000b +int layout abc_dialog_title_material 0x7f09000c +int layout abc_expanded_menu_layout 0x7f09000d +int layout abc_list_menu_item_checkbox 0x7f09000e +int layout abc_list_menu_item_icon 0x7f09000f +int layout abc_list_menu_item_layout 0x7f090010 +int layout abc_list_menu_item_radio 0x7f090011 +int layout abc_popup_menu_header_item_layout 0x7f090012 +int layout abc_popup_menu_item_layout 0x7f090013 +int layout abc_screen_content_include 0x7f090014 +int layout abc_screen_simple 0x7f090015 +int layout abc_screen_simple_overlay_action_mode 0x7f090016 +int layout abc_screen_toolbar 0x7f090017 +int layout abc_search_dropdown_item_icons_2line 0x7f090018 +int layout abc_search_view 0x7f090019 +int layout abc_select_dialog_material 0x7f09001a +int layout abc_tooltip 0x7f09001b +int layout dev_loading_view 0x7f09001c +int layout fps_view 0x7f09001d +int layout notification_action 0x7f09001e +int layout notification_action_tombstone 0x7f09001f +int layout notification_template_custom_big 0x7f090020 +int layout notification_template_icon_group 0x7f090021 +int layout notification_template_part_chronometer 0x7f090022 +int layout notification_template_part_time 0x7f090023 +int layout redbox_item_frame 0x7f090024 +int layout redbox_item_title 0x7f090025 +int layout redbox_view 0x7f090026 +int layout select_dialog_item_material 0x7f090027 +int layout select_dialog_multichoice_material 0x7f090028 +int layout select_dialog_singlechoice_material 0x7f090029 +int layout support_simple_spinner_dropdown_item 0x7f09002a +int mipmap ic_launcher 0x7f0a0000 +int mipmap ic_launcher_round 0x7f0a0001 +int string abc_action_bar_home_description 0x7f0b0000 +int string abc_action_bar_up_description 0x7f0b0001 +int string abc_action_menu_overflow_description 0x7f0b0002 +int string abc_action_mode_done 0x7f0b0003 +int string abc_activity_chooser_view_see_all 0x7f0b0004 +int string abc_activitychooserview_choose_application 0x7f0b0005 +int string abc_capital_off 0x7f0b0006 +int string abc_capital_on 0x7f0b0007 +int string abc_font_family_body_1_material 0x7f0b0008 +int string abc_font_family_body_2_material 0x7f0b0009 +int string abc_font_family_button_material 0x7f0b000a +int string abc_font_family_caption_material 0x7f0b000b +int string abc_font_family_display_1_material 0x7f0b000c +int string abc_font_family_display_2_material 0x7f0b000d +int string abc_font_family_display_3_material 0x7f0b000e +int string abc_font_family_display_4_material 0x7f0b000f +int string abc_font_family_headline_material 0x7f0b0010 +int string abc_font_family_menu_material 0x7f0b0011 +int string abc_font_family_subhead_material 0x7f0b0012 +int string abc_font_family_title_material 0x7f0b0013 +int string abc_menu_alt_shortcut_label 0x7f0b0014 +int string abc_menu_ctrl_shortcut_label 0x7f0b0015 +int string abc_menu_delete_shortcut_label 0x7f0b0016 +int string abc_menu_enter_shortcut_label 0x7f0b0017 +int string abc_menu_function_shortcut_label 0x7f0b0018 +int string abc_menu_meta_shortcut_label 0x7f0b0019 +int string abc_menu_shift_shortcut_label 0x7f0b001a +int string abc_menu_space_shortcut_label 0x7f0b001b +int string abc_menu_sym_shortcut_label 0x7f0b001c +int string abc_prepend_shortcut_label 0x7f0b001d +int string abc_search_hint 0x7f0b001e +int string abc_searchview_description_clear 0x7f0b001f +int string abc_searchview_description_query 0x7f0b0020 +int string abc_searchview_description_search 0x7f0b0021 +int string abc_searchview_description_submit 0x7f0b0022 +int string abc_searchview_description_voice 0x7f0b0023 +int string abc_shareactionprovider_share_with 0x7f0b0024 +int string abc_shareactionprovider_share_with_application 0x7f0b0025 +int string abc_toolbar_collapse_description 0x7f0b0026 +int string alert_description 0x7f0b0027 +int string app_name 0x7f0b0028 +int string catalyst_change_bundle_location 0x7f0b0029 +int string catalyst_copy_button 0x7f0b002a +int string catalyst_debug 0x7f0b002b +int string catalyst_debug_chrome 0x7f0b002c +int string catalyst_debug_chrome_stop 0x7f0b002d +int string catalyst_debug_connecting 0x7f0b002e +int string catalyst_debug_error 0x7f0b002f +int string catalyst_debug_nuclide 0x7f0b0030 +int string catalyst_debug_nuclide_error 0x7f0b0031 +int string catalyst_debug_stop 0x7f0b0032 +int string catalyst_dismiss_button 0x7f0b0033 +int string catalyst_heap_capture 0x7f0b0034 +int string catalyst_hot_reloading 0x7f0b0035 +int string catalyst_hot_reloading_auto_disable 0x7f0b0036 +int string catalyst_hot_reloading_auto_enable 0x7f0b0037 +int string catalyst_hot_reloading_stop 0x7f0b0038 +int string catalyst_inspector 0x7f0b0039 +int string catalyst_loading_from_url 0x7f0b003a +int string catalyst_perf_monitor 0x7f0b003b +int string catalyst_perf_monitor_stop 0x7f0b003c +int string catalyst_reload 0x7f0b003d +int string catalyst_reload_button 0x7f0b003e +int string catalyst_reload_error 0x7f0b003f +int string catalyst_report_button 0x7f0b0040 +int string catalyst_sample_profiler_disable 0x7f0b0041 +int string catalyst_sample_profiler_enable 0x7f0b0042 +int string catalyst_settings 0x7f0b0043 +int string catalyst_settings_title 0x7f0b0044 +int string combobox_description 0x7f0b0045 +int string header_description 0x7f0b0046 +int string image_description 0x7f0b0047 +int string imagebutton_description 0x7f0b0048 +int string link_description 0x7f0b0049 +int string menu_description 0x7f0b004a +int string menubar_description 0x7f0b004b +int string menuitem_description 0x7f0b004c +int string progressbar_description 0x7f0b004d +int string radiogroup_description 0x7f0b004e +int string rn_tab_description 0x7f0b004f +int string scrollbar_description 0x7f0b0050 +int string search_description 0x7f0b0051 +int string search_menu_title 0x7f0b0052 +int string spinbutton_description 0x7f0b0053 +int string state_busy_description 0x7f0b0054 +int string state_collapsed_description 0x7f0b0055 +int string state_expanded_description 0x7f0b0056 +int string state_mixed_description 0x7f0b0057 +int string state_off_description 0x7f0b0058 +int string state_on_description 0x7f0b0059 +int string status_bar_notification_info_overflow 0x7f0b005a +int string summary_description 0x7f0b005b +int string tablist_description 0x7f0b005c +int string timer_description 0x7f0b005d +int string toolbar_description 0x7f0b005e +int style AlertDialog_AppCompat 0x7f0c0000 +int style AlertDialog_AppCompat_Light 0x7f0c0001 +int style Animation_AppCompat_Dialog 0x7f0c0002 +int style Animation_AppCompat_DropDownUp 0x7f0c0003 +int style Animation_AppCompat_Tooltip 0x7f0c0004 +int style Animation_Catalyst_RedBox 0x7f0c0005 +int style AppTheme 0x7f0c0006 +int style Base_AlertDialog_AppCompat 0x7f0c0007 +int style Base_AlertDialog_AppCompat_Light 0x7f0c0008 +int style Base_Animation_AppCompat_Dialog 0x7f0c0009 +int style Base_Animation_AppCompat_DropDownUp 0x7f0c000a +int style Base_Animation_AppCompat_Tooltip 0x7f0c000b +int style Base_DialogWindowTitle_AppCompat 0x7f0c000c +int style Base_DialogWindowTitleBackground_AppCompat 0x7f0c000d +int style Base_TextAppearance_AppCompat 0x7f0c000e +int style Base_TextAppearance_AppCompat_Body1 0x7f0c000f +int style Base_TextAppearance_AppCompat_Body2 0x7f0c0010 +int style Base_TextAppearance_AppCompat_Button 0x7f0c0011 +int style Base_TextAppearance_AppCompat_Caption 0x7f0c0012 +int style Base_TextAppearance_AppCompat_Display1 0x7f0c0013 +int style Base_TextAppearance_AppCompat_Display2 0x7f0c0014 +int style Base_TextAppearance_AppCompat_Display3 0x7f0c0015 +int style Base_TextAppearance_AppCompat_Display4 0x7f0c0016 +int style Base_TextAppearance_AppCompat_Headline 0x7f0c0017 +int style Base_TextAppearance_AppCompat_Inverse 0x7f0c0018 +int style Base_TextAppearance_AppCompat_Large 0x7f0c0019 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0c001a +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c001b +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c001c +int style Base_TextAppearance_AppCompat_Medium 0x7f0c001d +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0c001e +int style Base_TextAppearance_AppCompat_Menu 0x7f0c001f +int style Base_TextAppearance_AppCompat_SearchResult 0x7f0c0020 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c0021 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0c0022 +int style Base_TextAppearance_AppCompat_Small 0x7f0c0023 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0c0024 +int style Base_TextAppearance_AppCompat_Subhead 0x7f0c0025 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0c0026 +int style Base_TextAppearance_AppCompat_Title 0x7f0c0027 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0c0028 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f0c0029 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c002a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c002d +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c002e +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c002f +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c0030 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0c0031 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0c0032 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0c0033 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0c0034 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0035 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0c0036 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c0037 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c0038 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0c0039 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c003a +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c003b +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c003c +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c003d +int style Base_Theme_AppCompat 0x7f0c003e +int style Base_Theme_AppCompat_CompactMenu 0x7f0c003f +int style Base_Theme_AppCompat_Dialog 0x7f0c0040 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f0c0041 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0c0042 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0c0043 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0c0044 +int style Base_Theme_AppCompat_Light 0x7f0c0045 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0c0046 +int style Base_Theme_AppCompat_Light_Dialog 0x7f0c0047 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0c0048 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0c0049 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0c004a +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0c004b +int style Base_ThemeOverlay_AppCompat 0x7f0c004c +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0c004d +int style Base_ThemeOverlay_AppCompat_Dark 0x7f0c004e +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c004f +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0c0050 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0c0051 +int style Base_ThemeOverlay_AppCompat_Light 0x7f0c0052 +int style Base_V21_Theme_AppCompat 0x7f0c0053 +int style Base_V21_Theme_AppCompat_Dialog 0x7f0c0054 +int style Base_V21_Theme_AppCompat_Light 0x7f0c0055 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0c0056 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0c0057 +int style Base_V22_Theme_AppCompat 0x7f0c0058 +int style Base_V22_Theme_AppCompat_Light 0x7f0c0059 +int style Base_V23_Theme_AppCompat 0x7f0c005a +int style Base_V23_Theme_AppCompat_Light 0x7f0c005b +int style Base_V26_Theme_AppCompat 0x7f0c005c +int style Base_V26_Theme_AppCompat_Light 0x7f0c005d +int style Base_V26_Widget_AppCompat_Toolbar 0x7f0c005e +int style Base_V28_Theme_AppCompat 0x7f0c005f +int style Base_V28_Theme_AppCompat_Light 0x7f0c0060 +int style Base_V7_Theme_AppCompat 0x7f0c0061 +int style Base_V7_Theme_AppCompat_Dialog 0x7f0c0062 +int style Base_V7_Theme_AppCompat_Light 0x7f0c0063 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0c0064 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0c0065 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0c0066 +int style Base_V7_Widget_AppCompat_EditText 0x7f0c0067 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f0c0068 +int style Base_Widget_AppCompat_ActionBar 0x7f0c0069 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0c006a +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0c006b +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0c006c +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0c006d +int style Base_Widget_AppCompat_ActionButton 0x7f0c006e +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0c006f +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0c0070 +int style Base_Widget_AppCompat_ActionMode 0x7f0c0071 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f0c0072 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0c0073 +int style Base_Widget_AppCompat_Button 0x7f0c0074 +int style Base_Widget_AppCompat_Button_Borderless 0x7f0c0075 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0c0076 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0c0077 +int style Base_Widget_AppCompat_Button_Colored 0x7f0c0078 +int style Base_Widget_AppCompat_Button_Small 0x7f0c0079 +int style Base_Widget_AppCompat_ButtonBar 0x7f0c007a +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0c007b +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0c007c +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0c007d +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0c007e +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0c007f +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0c0080 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0c0081 +int style Base_Widget_AppCompat_EditText 0x7f0c0082 +int style Base_Widget_AppCompat_ImageButton 0x7f0c0083 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f0c0084 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0c0085 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c0086 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0087 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c0088 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0c0089 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0c008a +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c008b +int style Base_Widget_AppCompat_ListMenuView 0x7f0c008c +int style Base_Widget_AppCompat_ListPopupWindow 0x7f0c008d +int style Base_Widget_AppCompat_ListView 0x7f0c008e +int style Base_Widget_AppCompat_ListView_DropDown 0x7f0c008f +int style Base_Widget_AppCompat_ListView_Menu 0x7f0c0090 +int style Base_Widget_AppCompat_PopupMenu 0x7f0c0091 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0c0092 +int style Base_Widget_AppCompat_PopupWindow 0x7f0c0093 +int style Base_Widget_AppCompat_ProgressBar 0x7f0c0094 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0c0095 +int style Base_Widget_AppCompat_RatingBar 0x7f0c0096 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0c0097 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f0c0098 +int style Base_Widget_AppCompat_SearchView 0x7f0c0099 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0c009a +int style Base_Widget_AppCompat_SeekBar 0x7f0c009b +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0c009c +int style Base_Widget_AppCompat_Spinner 0x7f0c009d +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0c009e +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0c009f +int style Base_Widget_AppCompat_Toolbar 0x7f0c00a0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c00a1 +int style CalendarDatePickerDialog 0x7f0c00a2 +int style CalendarDatePickerStyle 0x7f0c00a3 +int style ClockTimePickerDialog 0x7f0c00a4 +int style ClockTimePickerStyle 0x7f0c00a5 +int style DialogAnimationFade 0x7f0c00a6 +int style DialogAnimationSlide 0x7f0c00a7 +int style Platform_AppCompat 0x7f0c00a8 +int style Platform_AppCompat_Light 0x7f0c00a9 +int style Platform_ThemeOverlay_AppCompat 0x7f0c00aa +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0c00ab +int style Platform_ThemeOverlay_AppCompat_Light 0x7f0c00ac +int style Platform_V21_AppCompat 0x7f0c00ad +int style Platform_V21_AppCompat_Light 0x7f0c00ae +int style Platform_V25_AppCompat 0x7f0c00af +int style Platform_V25_AppCompat_Light 0x7f0c00b0 +int style Platform_Widget_AppCompat_Spinner 0x7f0c00b1 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0c00b2 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0c00b3 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0c00b4 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0c00b5 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0c00b6 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0c00b7 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0c00b8 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0c00b9 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0c00ba +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0c00bb +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0c00bc +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0c00bd +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0c00be +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0c00bf +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0c00c0 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0c00c1 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0c00c2 +int style SpinnerDatePickerDialog 0x7f0c00c3 +int style SpinnerDatePickerStyle 0x7f0c00c4 +int style SpinnerTimePickerDialog 0x7f0c00c5 +int style SpinnerTimePickerStyle 0x7f0c00c6 +int style TextAppearance_AppCompat 0x7f0c00c7 +int style TextAppearance_AppCompat_Body1 0x7f0c00c8 +int style TextAppearance_AppCompat_Body2 0x7f0c00c9 +int style TextAppearance_AppCompat_Button 0x7f0c00ca +int style TextAppearance_AppCompat_Caption 0x7f0c00cb +int style TextAppearance_AppCompat_Display1 0x7f0c00cc +int style TextAppearance_AppCompat_Display2 0x7f0c00cd +int style TextAppearance_AppCompat_Display3 0x7f0c00ce +int style TextAppearance_AppCompat_Display4 0x7f0c00cf +int style TextAppearance_AppCompat_Headline 0x7f0c00d0 +int style TextAppearance_AppCompat_Inverse 0x7f0c00d1 +int style TextAppearance_AppCompat_Large 0x7f0c00d2 +int style TextAppearance_AppCompat_Large_Inverse 0x7f0c00d3 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0c00d4 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0c00d5 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c00d6 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c00d7 +int style TextAppearance_AppCompat_Medium 0x7f0c00d8 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f0c00d9 +int style TextAppearance_AppCompat_Menu 0x7f0c00da +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c00db +int style TextAppearance_AppCompat_SearchResult_Title 0x7f0c00dc +int style TextAppearance_AppCompat_Small 0x7f0c00dd +int style TextAppearance_AppCompat_Small_Inverse 0x7f0c00de +int style TextAppearance_AppCompat_Subhead 0x7f0c00df +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0c00e0 +int style TextAppearance_AppCompat_Title 0x7f0c00e1 +int style TextAppearance_AppCompat_Title_Inverse 0x7f0c00e2 +int style TextAppearance_AppCompat_Tooltip 0x7f0c00e3 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c00e4 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c00e5 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c00e6 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c00e7 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c00e8 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c00e9 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0c00ea +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c00eb +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0c00ec +int style TextAppearance_AppCompat_Widget_Button 0x7f0c00ed +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0c00ee +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0c00ef +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0c00f0 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c00f1 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0c00f2 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c00f3 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c00f4 +int style TextAppearance_AppCompat_Widget_Switch 0x7f0c00f5 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c00f6 +int style TextAppearance_Compat_Notification 0x7f0c00f7 +int style TextAppearance_Compat_Notification_Info 0x7f0c00f8 +int style TextAppearance_Compat_Notification_Line2 0x7f0c00f9 +int style TextAppearance_Compat_Notification_Time 0x7f0c00fa +int style TextAppearance_Compat_Notification_Title 0x7f0c00fb +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c00fc +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c00fd +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c00fe +int style Theme 0x7f0c00ff +int style Theme_AppCompat 0x7f0c0100 +int style Theme_AppCompat_CompactMenu 0x7f0c0101 +int style Theme_AppCompat_DayNight 0x7f0c0102 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0c0103 +int style Theme_AppCompat_DayNight_Dialog 0x7f0c0104 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0c0105 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0c0106 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0c0107 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f0c0108 +int style Theme_AppCompat_Dialog 0x7f0c0109 +int style Theme_AppCompat_Dialog_Alert 0x7f0c010a +int style Theme_AppCompat_Dialog_MinWidth 0x7f0c010b +int style Theme_AppCompat_DialogWhenLarge 0x7f0c010c +int style Theme_AppCompat_Light 0x7f0c010d +int style Theme_AppCompat_Light_DarkActionBar 0x7f0c010e +int style Theme_AppCompat_Light_Dialog 0x7f0c010f +int style Theme_AppCompat_Light_Dialog_Alert 0x7f0c0110 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0c0111 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0c0112 +int style Theme_AppCompat_Light_NoActionBar 0x7f0c0113 +int style Theme_AppCompat_NoActionBar 0x7f0c0114 +int style Theme_Catalyst 0x7f0c0115 +int style Theme_Catalyst_RedBox 0x7f0c0116 +int style Theme_FullScreenDialog 0x7f0c0117 +int style Theme_FullScreenDialogAnimatedFade 0x7f0c0118 +int style Theme_FullScreenDialogAnimatedSlide 0x7f0c0119 +int style Theme_ReactNative_AppCompat_Light 0x7f0c011a +int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0c011b +int style ThemeOverlay_AppCompat 0x7f0c011c +int style ThemeOverlay_AppCompat_ActionBar 0x7f0c011d +int style ThemeOverlay_AppCompat_Dark 0x7f0c011e +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c011f +int style ThemeOverlay_AppCompat_Dialog 0x7f0c0120 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0c0121 +int style ThemeOverlay_AppCompat_Light 0x7f0c0122 +int style Widget_AppCompat_ActionBar 0x7f0c0123 +int style Widget_AppCompat_ActionBar_Solid 0x7f0c0124 +int style Widget_AppCompat_ActionBar_TabBar 0x7f0c0125 +int style Widget_AppCompat_ActionBar_TabText 0x7f0c0126 +int style Widget_AppCompat_ActionBar_TabView 0x7f0c0127 +int style Widget_AppCompat_ActionButton 0x7f0c0128 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f0c0129 +int style Widget_AppCompat_ActionButton_Overflow 0x7f0c012a +int style Widget_AppCompat_ActionMode 0x7f0c012b +int style Widget_AppCompat_ActivityChooserView 0x7f0c012c +int style Widget_AppCompat_AutoCompleteTextView 0x7f0c012d +int style Widget_AppCompat_Button 0x7f0c012e +int style Widget_AppCompat_Button_Borderless 0x7f0c012f +int style Widget_AppCompat_Button_Borderless_Colored 0x7f0c0130 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0c0131 +int style Widget_AppCompat_Button_Colored 0x7f0c0132 +int style Widget_AppCompat_Button_Small 0x7f0c0133 +int style Widget_AppCompat_ButtonBar 0x7f0c0134 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0c0135 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0c0136 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0c0137 +int style Widget_AppCompat_CompoundButton_Switch 0x7f0c0138 +int style Widget_AppCompat_DrawerArrowToggle 0x7f0c0139 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f0c013a +int style Widget_AppCompat_EditText 0x7f0c013b +int style Widget_AppCompat_ImageButton 0x7f0c013c +int style Widget_AppCompat_Light_ActionBar 0x7f0c013d +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0c013e +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0c013f +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c0140 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0c0141 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0142 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c0143 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0c0144 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0c0145 +int style Widget_AppCompat_Light_ActionButton 0x7f0c0146 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0c0147 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0c0148 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0c0149 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f0c014a +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0c014b +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0c014c +int style Widget_AppCompat_Light_ListPopupWindow 0x7f0c014d +int style Widget_AppCompat_Light_ListView_DropDown 0x7f0c014e +int style Widget_AppCompat_Light_PopupMenu 0x7f0c014f +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c0150 +int style Widget_AppCompat_Light_SearchView 0x7f0c0151 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0c0152 +int style Widget_AppCompat_ListMenuView 0x7f0c0153 +int style Widget_AppCompat_ListPopupWindow 0x7f0c0154 +int style Widget_AppCompat_ListView 0x7f0c0155 +int style Widget_AppCompat_ListView_DropDown 0x7f0c0156 +int style Widget_AppCompat_ListView_Menu 0x7f0c0157 +int style Widget_AppCompat_PopupMenu 0x7f0c0158 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f0c0159 +int style Widget_AppCompat_PopupWindow 0x7f0c015a +int style Widget_AppCompat_ProgressBar 0x7f0c015b +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0c015c +int style Widget_AppCompat_RatingBar 0x7f0c015d +int style Widget_AppCompat_RatingBar_Indicator 0x7f0c015e +int style Widget_AppCompat_RatingBar_Small 0x7f0c015f +int style Widget_AppCompat_SearchView 0x7f0c0160 +int style Widget_AppCompat_SearchView_ActionBar 0x7f0c0161 +int style Widget_AppCompat_SeekBar 0x7f0c0162 +int style Widget_AppCompat_SeekBar_Discrete 0x7f0c0163 +int style Widget_AppCompat_Spinner 0x7f0c0164 +int style Widget_AppCompat_Spinner_DropDown 0x7f0c0165 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c0166 +int style Widget_AppCompat_Spinner_Underlined 0x7f0c0167 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f0c0168 +int style Widget_AppCompat_Toolbar 0x7f0c0169 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c016a +int style Widget_Compat_NotificationActionContainer 0x7f0c016b +int style Widget_Compat_NotificationActionText 0x7f0c016c +int style Widget_Support_CoordinatorLayout 0x7f0c016d +int style redboxButton 0x7f0c016e +int[] styleable ActionBar { 0x7f020034, 0x7f020036, 0x7f020037, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020063, 0x7f020068, 0x7f020069, 0x7f020074, 0x7f020087, 0x7f020088, 0x7f020089, 0x7f02008a, 0x7f02008b, 0x7f020090, 0x7f020093, 0x7f0200a9, 0x7f0200b0, 0x7f0200be, 0x7f0200c5, 0x7f0200c6, 0x7f0200f1, 0x7f0200f4, 0x7f02010f, 0x7f020118 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f020034, 0x7f020036, 0x7f02004b, 0x7f020087, 0x7f0200f4, 0x7f020118 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f020075, 0x7f020091 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f020042, 0x7f020043, 0x7f0200a0, 0x7f0200a1, 0x7f0200ad, 0x7f0200e6, 0x7f0200e7 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable AnimatedStateListDrawableCompat_android_dither 0 +int styleable AnimatedStateListDrawableCompat_android_visible 1 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 +int styleable AnimatedStateListDrawableCompat_android_constantSize 3 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 +int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } +int styleable AnimatedStateListDrawableItem_android_id 0 +int styleable AnimatedStateListDrawableItem_android_drawable 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_toId 1 +int styleable AnimatedStateListDrawableTransition_android_fromId 2 +int styleable AnimatedStateListDrawableTransition_android_reversible 3 +int[] styleable AppCompatImageView { 0x01010119, 0x7f0200ec, 0x7f02010d, 0x7f02010e } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f02010a, 0x7f02010b, 0x7f02010c } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } +int styleable AppCompatTextHelper_android_textAppearance 0 +int styleable AppCompatTextHelper_android_drawableTop 1 +int styleable AppCompatTextHelper_android_drawableBottom 2 +int styleable AppCompatTextHelper_android_drawableLeft 3 +int styleable AppCompatTextHelper_android_drawableRight 4 +int styleable AppCompatTextHelper_android_drawableStart 5 +int styleable AppCompatTextHelper_android_drawableEnd 6 +int[] styleable AppCompatTextView { 0x01010034, 0x7f02002f, 0x7f020030, 0x7f020031, 0x7f020032, 0x7f020033, 0x7f020079, 0x7f02007b, 0x7f020095, 0x7f02009d, 0x7f0200fa } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_firstBaselineToTopHeight 6 +int styleable AppCompatTextView_fontFamily 7 +int styleable AppCompatTextView_lastBaselineToBottomHeight 8 +int styleable AppCompatTextView_lineHeight 9 +int styleable AppCompatTextView_textAllCaps 10 +int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020025, 0x7f020026, 0x7f020027, 0x7f020028, 0x7f02002e, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f02003f, 0x7f020040, 0x7f020044, 0x7f020045, 0x7f020048, 0x7f020049, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020057, 0x7f020058, 0x7f020061, 0x7f020065, 0x7f020066, 0x7f020067, 0x7f02006a, 0x7f02006c, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073, 0x7f020089, 0x7f02008f, 0x7f02009e, 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bd, 0x7f0200bf, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200df, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e9, 0x7f0200ea, 0x7f0200f8, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f020100, 0x7f020101, 0x7f020102, 0x7f020103, 0x7f020104, 0x7f020119, 0x7f02011a, 0x7f02011b, 0x7f02011c, 0x7f020123, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f020129, 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f02012d, 0x7f02012e } +int styleable AppCompatTheme_android_windowIsFloating 0 +int styleable AppCompatTheme_android_windowAnimationStyle 1 +int styleable AppCompatTheme_actionBarDivider 2 +int styleable AppCompatTheme_actionBarItemBackground 3 +int styleable AppCompatTheme_actionBarPopupTheme 4 +int styleable AppCompatTheme_actionBarSize 5 +int styleable AppCompatTheme_actionBarSplitStyle 6 +int styleable AppCompatTheme_actionBarStyle 7 +int styleable AppCompatTheme_actionBarTabBarStyle 8 +int styleable AppCompatTheme_actionBarTabStyle 9 +int styleable AppCompatTheme_actionBarTabTextStyle 10 +int styleable AppCompatTheme_actionBarTheme 11 +int styleable AppCompatTheme_actionBarWidgetTheme 12 +int styleable AppCompatTheme_actionButtonStyle 13 +int styleable AppCompatTheme_actionDropDownStyle 14 +int styleable AppCompatTheme_actionMenuTextAppearance 15 +int styleable AppCompatTheme_actionMenuTextColor 16 +int styleable AppCompatTheme_actionModeBackground 17 +int styleable AppCompatTheme_actionModeCloseButtonStyle 18 +int styleable AppCompatTheme_actionModeCloseDrawable 19 +int styleable AppCompatTheme_actionModeCopyDrawable 20 +int styleable AppCompatTheme_actionModeCutDrawable 21 +int styleable AppCompatTheme_actionModeFindDrawable 22 +int styleable AppCompatTheme_actionModePasteDrawable 23 +int styleable AppCompatTheme_actionModePopupWindowStyle 24 +int styleable AppCompatTheme_actionModeSelectAllDrawable 25 +int styleable AppCompatTheme_actionModeShareDrawable 26 +int styleable AppCompatTheme_actionModeSplitBackground 27 +int styleable AppCompatTheme_actionModeStyle 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listDividerAlertDialog 72 +int styleable AppCompatTheme_listMenuViewStyle 73 +int styleable AppCompatTheme_listPopupWindowStyle 74 +int styleable AppCompatTheme_listPreferredItemHeight 75 +int styleable AppCompatTheme_listPreferredItemHeightLarge 76 +int styleable AppCompatTheme_listPreferredItemHeightSmall 77 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 78 +int styleable AppCompatTheme_listPreferredItemPaddingRight 79 +int styleable AppCompatTheme_panelBackground 80 +int styleable AppCompatTheme_panelMenuListTheme 81 +int styleable AppCompatTheme_panelMenuListWidth 82 +int styleable AppCompatTheme_popupMenuStyle 83 +int styleable AppCompatTheme_popupWindowStyle 84 +int styleable AppCompatTheme_radioButtonStyle 85 +int styleable AppCompatTheme_ratingBarStyle 86 +int styleable AppCompatTheme_ratingBarStyleIndicator 87 +int styleable AppCompatTheme_ratingBarStyleSmall 88 +int styleable AppCompatTheme_searchViewStyle 89 +int styleable AppCompatTheme_seekBarStyle 90 +int styleable AppCompatTheme_selectableItemBackground 91 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 92 +int styleable AppCompatTheme_spinnerDropDownItemStyle 93 +int styleable AppCompatTheme_spinnerStyle 94 +int styleable AppCompatTheme_switchStyle 95 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 96 +int styleable AppCompatTheme_textAppearanceListItem 97 +int styleable AppCompatTheme_textAppearanceListItemSecondary 98 +int styleable AppCompatTheme_textAppearanceListItemSmall 99 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 100 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 102 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103 +int styleable AppCompatTheme_textColorAlertDialogListItem 104 +int styleable AppCompatTheme_textColorSearchUrl 105 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 106 +int styleable AppCompatTheme_toolbarStyle 107 +int styleable AppCompatTheme_tooltipForegroundColor 108 +int styleable AppCompatTheme_tooltipFrameBackground 109 +int styleable AppCompatTheme_viewInflaterClass 110 +int styleable AppCompatTheme_windowActionBar 111 +int styleable AppCompatTheme_windowActionBarOverlay 112 +int styleable AppCompatTheme_windowActionModeOverlay 113 +int styleable AppCompatTheme_windowFixedHeightMajor 114 +int styleable AppCompatTheme_windowFixedHeightMinor 115 +int styleable AppCompatTheme_windowFixedWidthMajor 116 +int styleable AppCompatTheme_windowFixedWidthMinor 117 +int styleable AppCompatTheme_windowMinWidthMajor 118 +int styleable AppCompatTheme_windowMinWidthMinor 119 +int styleable AppCompatTheme_windowNoTitle 120 +int[] styleable ButtonBarLayout { 0x7f020029 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f02002a } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_alpha 2 +int[] styleable CompoundButton { 0x01010107, 0x7f020046, 0x7f020047 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonTint 1 +int styleable CompoundButton_buttonTintMode 2 +int[] styleable CoordinatorLayout { 0x7f020094, 0x7f0200ee } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable DrawerArrowToggle { 0x7f02002c, 0x7f02002d, 0x7f02003a, 0x7f02004e, 0x7f02006d, 0x7f020085, 0x7f0200e8, 0x7f020106 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020121 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontWeight 1 +int styleable FontFamilyFont_android_fontStyle 2 +int styleable FontFamilyFont_android_ttcIndex 3 +int styleable FontFamilyFont_android_fontVariationSettings 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GenericDraweeHierarchy { 0x7f020023, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } +int styleable GradientColor_android_startColor 0 +int styleable GradientColor_android_endColor 1 +int styleable GradientColor_android_type 2 +int styleable GradientColor_android_centerX 3 +int styleable GradientColor_android_centerY 4 +int styleable GradientColor_android_gradientRadius 5 +int styleable GradientColor_android_tileMode 6 +int styleable GradientColor_android_centerColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_endX 10 +int styleable GradientColor_android_endY 11 +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020069, 0x7f02006b, 0x7f0200ac, 0x7f0200e4 } +int styleable LinearLayoutCompat_android_gravity 0 +int styleable LinearLayoutCompat_android_orientation 1 +int styleable LinearLayoutCompat_android_baselineAligned 2 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_width 1 +int styleable LinearLayoutCompat_Layout_android_layout_height 2 +int styleable LinearLayoutCompat_Layout_android_layout_weight 3 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } +int styleable MenuGroup_android_enabled 0 +int styleable MenuGroup_android_id 1 +int styleable MenuGroup_android_visible 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_checkableBehavior 5 +int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f02002b, 0x7f02005a, 0x7f02008c, 0x7f02008d, 0x7f0200b1, 0x7f0200e3, 0x7f02011d } +int styleable MenuItem_android_icon 0 +int styleable MenuItem_android_enabled 1 +int styleable MenuItem_android_id 2 +int styleable MenuItem_android_checked 3 +int styleable MenuItem_android_visible 4 +int styleable MenuItem_android_menuCategory 5 +int styleable MenuItem_android_orderInCategory 6 +int styleable MenuItem_android_title 7 +int styleable MenuItem_android_titleCondensed 8 +int styleable MenuItem_android_alphabeticShortcut 9 +int styleable MenuItem_android_numericShortcut 10 +int styleable MenuItem_android_checkable 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_actionLayout 13 +int styleable MenuItem_actionProviderClass 14 +int styleable MenuItem_actionViewClass 15 +int styleable MenuItem_alphabeticModifiers 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200c0, 0x7f0200ef } +int styleable MenuView_android_windowAnimationStyle 0 +int styleable MenuView_android_itemTextAppearance 1 +int styleable MenuView_android_horizontalDivider 2 +int styleable MenuView_android_verticalDivider 3 +int styleable MenuView_android_headerBackground 4 +int styleable MenuView_android_itemBackground 5 +int styleable MenuView_android_itemIconDisabledAlpha 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200b2 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_android_popupAnimationStyle 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f0200ed } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f0200b4, 0x7f0200b7 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f02004a, 0x7f020059, 0x7f020064, 0x7f020086, 0x7f02008e, 0x7f020096, 0x7f0200c7, 0x7f0200c8, 0x7f0200dd, 0x7f0200de, 0x7f0200f0, 0x7f0200f5, 0x7f020124 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_maxWidth 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_imeOptions 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable SimpleDraweeView { 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020035, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f0200b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f020122 } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200be } +int styleable Spinner_android_entries 0 +int styleable Spinner_android_popupBackground 1 +int styleable Spinner_android_prompt 2 +int styleable Spinner_android_dropDownWidth 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable StateListDrawable_android_dither 0 +int styleable StateListDrawable_android_visible 1 +int styleable StateListDrawable_android_variablePadding 2 +int styleable StateListDrawable_android_constantSize 3 +int styleable StateListDrawable_android_enterFadeDuration 4 +int styleable StateListDrawable_android_exitFadeDuration 5 +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0200e5, 0x7f0200eb, 0x7f0200f6, 0x7f0200f7, 0x7f0200f9, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02011e, 0x7f02011f, 0x7f020120 } +int styleable SwitchCompat_android_textOn 0 +int styleable SwitchCompat_android_textOff 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f02007b, 0x7f0200fa } +int styleable TextAppearance_android_textSize 0 +int styleable TextAppearance_android_typeface 1 +int styleable TextAppearance_android_textStyle 2 +int styleable TextAppearance_android_textColor 3 +int styleable TextAppearance_android_textColorHint 4 +int styleable TextAppearance_android_textColorLink 5 +int styleable TextAppearance_android_shadowColor 6 +int styleable TextAppearance_android_shadowDx 7 +int styleable TextAppearance_android_shadowDy 8 +int styleable TextAppearance_android_shadowRadius 9 +int styleable TextAppearance_android_fontFamily 10 +int styleable TextAppearance_fontFamily 11 +int styleable TextAppearance_textAllCaps 12 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f020041, 0x7f02004c, 0x7f02004d, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ae, 0x7f0200af, 0x7f0200be, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, 0x7f02010f, 0x7f020110, 0x7f020111, 0x7f020112, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f020116, 0x7f020117 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_navigationContentDescription 14 +int styleable Toolbar_navigationIcon 15 +int styleable Toolbar_popupTheme 16 +int styleable Toolbar_subtitle 17 +int styleable Toolbar_subtitleTextAppearance 18 +int styleable Toolbar_subtitleTextColor 19 +int styleable Toolbar_title 20 +int styleable Toolbar_titleMargin 21 +int styleable Toolbar_titleMarginBottom 22 +int styleable Toolbar_titleMarginEnd 23 +int styleable Toolbar_titleMarginStart 24 +int styleable Toolbar_titleMarginTop 25 +int styleable Toolbar_titleMargins 26 +int styleable Toolbar_titleTextAppearance 27 +int styleable Toolbar_titleTextColor 28 +int[] styleable View { 0x01010000, 0x010100da, 0x7f0200b5, 0x7f0200b6, 0x7f020105 } +int styleable View_android_theme 0 +int styleable View_android_focusable 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020038, 0x7f020039 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_layout 1 +int styleable ViewStubCompat_android_inflatedId 2 +int xml rn_dev_preferences 0x7f0e0000 diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/0.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/0.jar new file mode 100644 index 0000000..29bfa05 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/0.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/1.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/1.jar new file mode 100644 index 0000000..a321ce6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/1.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/10.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/10.jar new file mode 100644 index 0000000..9270ad2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/10.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/100.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/100.jar new file mode 100644 index 0000000..34da0f7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/100.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/101.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/101.jar new file mode 100644 index 0000000..1deb597 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/101.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/102.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/102.jar new file mode 100644 index 0000000..ba9b970 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/102.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/103.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/103.jar new file mode 100644 index 0000000..46e03c6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/103.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/104.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/104.jar new file mode 100644 index 0000000..38a6507 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/104.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/105.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/105.jar new file mode 100644 index 0000000..8a21f8b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/105.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/106.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/106.jar new file mode 100644 index 0000000..f3a7afa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/106.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/107.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/107.jar new file mode 100644 index 0000000..6c1be78 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/107.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/108.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/108.jar new file mode 100644 index 0000000..e5751ea Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/108.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/109.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/109.jar new file mode 100644 index 0000000..72fa4e8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/109.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/11.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/11.jar new file mode 100644 index 0000000..29c999a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/11.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/110.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/110.jar new file mode 100644 index 0000000..0704b34 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/110.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/111.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/111.jar new file mode 100644 index 0000000..4c7107b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/111.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/112.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/112.jar new file mode 100644 index 0000000..a7efbbd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/112.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/113.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/113.jar new file mode 100644 index 0000000..7132e4d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/113.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/114.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/114.jar new file mode 100644 index 0000000..e382463 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/114.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/115.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/115.jar new file mode 100644 index 0000000..30419c1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/115.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/117.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/117.jar new file mode 100644 index 0000000..d39a935 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/117.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/118.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/118.jar new file mode 100644 index 0000000..0756e6b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/118.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/119.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/119.jar new file mode 100644 index 0000000..50ca30c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/119.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/12.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/12.jar new file mode 100644 index 0000000..787d83b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/12.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/120.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/120.jar new file mode 100644 index 0000000..ba5d902 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/120.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/121.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/121.jar new file mode 100644 index 0000000..add6f18 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/121.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/122.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/122.jar new file mode 100644 index 0000000..47cd078 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/122.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/123.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/123.jar new file mode 100644 index 0000000..a12919b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/123.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/124.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/124.jar new file mode 100644 index 0000000..9959b54 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/124.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/125.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/125.jar new file mode 100644 index 0000000..9a8c884 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/125.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/126.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/126.jar new file mode 100644 index 0000000..05550a4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/126.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/127.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/127.jar new file mode 100644 index 0000000..f20560d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/127.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/128.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/128.jar new file mode 100644 index 0000000..8382126 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/128.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/129.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/129.jar new file mode 100644 index 0000000..35eccf0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/129.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/13.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/13.jar new file mode 100644 index 0000000..0a1f77b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/13.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/130.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/130.jar new file mode 100644 index 0000000..565ff53 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/130.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/131.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/131.jar new file mode 100644 index 0000000..1aacbda Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/131.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/132.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/132.jar new file mode 100644 index 0000000..9c36d36 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/132.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/133.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/133.jar new file mode 100644 index 0000000..e0bba32 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/133.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/134.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/134.jar new file mode 100644 index 0000000..c5e4cd0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/134.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/137.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/137.jar new file mode 100644 index 0000000..180066f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/137.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/138.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/138.jar new file mode 100644 index 0000000..d83cbf2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/138.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/139.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/139.jar new file mode 100644 index 0000000..5451033 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/139.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/14.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/14.jar new file mode 100644 index 0000000..d4a1087 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/14.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/141.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/141.jar new file mode 100644 index 0000000..538d762 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/141.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/142.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/142.jar new file mode 100644 index 0000000..5f7abf0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/142.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/143.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/143.jar new file mode 100644 index 0000000..e2c4b9e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/143.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/145.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/145.jar new file mode 100644 index 0000000..4c7732d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/145.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/146.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/146.jar new file mode 100644 index 0000000..8e71d6a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/146.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/147.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/147.jar new file mode 100644 index 0000000..df65f1b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/147.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/149.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/149.jar new file mode 100644 index 0000000..ecd00f1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/149.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/15.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/15.jar new file mode 100644 index 0000000..0bbb0b4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/15.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/150.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/150.jar new file mode 100644 index 0000000..7abceec Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/150.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/151.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/151.jar new file mode 100644 index 0000000..4555ad1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/151.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/152.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/152.jar new file mode 100644 index 0000000..8d1d785 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/152.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/153.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/153.jar new file mode 100644 index 0000000..622c08e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/153.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/154.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/154.jar new file mode 100644 index 0000000..955fa61 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/154.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/155.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/155.jar new file mode 100644 index 0000000..f6a319d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/155.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/156.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/156.jar new file mode 100644 index 0000000..16a014d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/156.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/157.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/157.jar new file mode 100644 index 0000000..6240ca0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/157.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/158.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/158.jar new file mode 100644 index 0000000..930a973 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/158.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/16.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/16.jar new file mode 100644 index 0000000..14c34a4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/16.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/160.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/160.jar new file mode 100644 index 0000000..3b235c4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/160.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/161.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/161.jar new file mode 100644 index 0000000..3231599 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/161.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/163.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/163.jar new file mode 100644 index 0000000..fa0e139 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/163.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/164.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/164.jar new file mode 100644 index 0000000..1ba8210 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/164.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/165.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/165.jar new file mode 100644 index 0000000..3f1bfe2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/165.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/166.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/166.jar new file mode 100644 index 0000000..343f070 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/166.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/167.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/167.jar new file mode 100644 index 0000000..8676c42 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/167.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/168.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/168.jar new file mode 100644 index 0000000..68699ba Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/168.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/169.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/169.jar new file mode 100644 index 0000000..ba2ce29 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/169.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/17.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/17.jar new file mode 100644 index 0000000..28fc6ba Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/17.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/171.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/171.jar new file mode 100644 index 0000000..3a9a372 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/171.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/172.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/172.jar new file mode 100644 index 0000000..5a1c187 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/172.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/173.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/173.jar new file mode 100644 index 0000000..76de94b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/173.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/174.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/174.jar new file mode 100644 index 0000000..f87db16 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/174.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/178.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/178.jar new file mode 100644 index 0000000..bb8d845 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/178.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/179.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/179.jar new file mode 100644 index 0000000..b1335dc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/179.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/18.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/18.jar new file mode 100644 index 0000000..96f46f2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/18.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/180.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/180.jar new file mode 100644 index 0000000..1514782 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/180.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/181.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/181.jar new file mode 100644 index 0000000..362e7cd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/181.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/182.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/182.jar new file mode 100644 index 0000000..5a0a8b4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/182.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/183.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/183.jar new file mode 100644 index 0000000..d51d1d5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/183.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/184.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/184.jar new file mode 100644 index 0000000..f8f3a7f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/184.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/185.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/185.jar new file mode 100644 index 0000000..617f484 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/185.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/186.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/186.jar new file mode 100644 index 0000000..ae9a7d4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/186.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/187.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/187.jar new file mode 100644 index 0000000..67023a8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/187.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/188.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/188.jar new file mode 100644 index 0000000..4bb5fa8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/188.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/189.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/189.jar new file mode 100644 index 0000000..e660f27 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/189.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/19.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/19.jar new file mode 100644 index 0000000..3b79541 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/19.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/190.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/190.jar new file mode 100644 index 0000000..06508e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/190.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/191.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/191.jar new file mode 100644 index 0000000..9918f23 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/191.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$anim.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$anim.dex new file mode 100644 index 0000000..df90764 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$anim.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$attr.dex new file mode 100644 index 0000000..fa8f797 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$bool.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$bool.dex new file mode 100644 index 0000000..5c5c9d9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$bool.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$color.dex new file mode 100644 index 0000000..1fcd311 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$dimen.dex new file mode 100644 index 0000000..0c3ec3d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$drawable.dex new file mode 100644 index 0000000..e9931c6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$id.dex new file mode 100644 index 0000000..6071370 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$integer.dex new file mode 100644 index 0000000..2b6a51b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$layout.dex new file mode 100644 index 0000000..6ea4b18 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$string.dex new file mode 100644 index 0000000..dad2568 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$style.dex new file mode 100644 index 0000000..c9bd101 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$styleable.dex new file mode 100644 index 0000000..9f3bbc8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R.dex new file mode 100644 index 0000000..1ad22c8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/appcompat/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/arch/core/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/arch/core/R.dex new file mode 100644 index 0000000..344df57 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/arch/core/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$attr.dex new file mode 100644 index 0000000..a9405f5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$color.dex new file mode 100644 index 0000000..1a6c77d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$dimen.dex new file mode 100644 index 0000000..5fba367 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$drawable.dex new file mode 100644 index 0000000..1974d2e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$id.dex new file mode 100644 index 0000000..70f4f46 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$integer.dex new file mode 100644 index 0000000..f8a353f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$layout.dex new file mode 100644 index 0000000..675ca85 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$string.dex new file mode 100644 index 0000000..e26e941 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$style.dex new file mode 100644 index 0000000..97f490a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$styleable.dex new file mode 100644 index 0000000..1d170b2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R.dex new file mode 100644 index 0000000..538ee90 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/asynclayoutinflater/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$attr.dex new file mode 100644 index 0000000..7ada9a7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$color.dex new file mode 100644 index 0000000..562c2c5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$dimen.dex new file mode 100644 index 0000000..00266bd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$drawable.dex new file mode 100644 index 0000000..1eeb473 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$id.dex new file mode 100644 index 0000000..b776fb7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$integer.dex new file mode 100644 index 0000000..57c69ae Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$layout.dex new file mode 100644 index 0000000..99993fa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$string.dex new file mode 100644 index 0000000..824943d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$style.dex new file mode 100644 index 0000000..0a5658a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$styleable.dex new file mode 100644 index 0000000..dd52ca6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R.dex new file mode 100644 index 0000000..15b2ce1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/coordinatorlayout/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$attr.dex new file mode 100644 index 0000000..a15c838 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$color.dex new file mode 100644 index 0000000..fd1e5b7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$dimen.dex new file mode 100644 index 0000000..6003432 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$drawable.dex new file mode 100644 index 0000000..88df6e7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$id.dex new file mode 100644 index 0000000..0f023d5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$integer.dex new file mode 100644 index 0000000..75ef6c6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$layout.dex new file mode 100644 index 0000000..0ec45ac Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$string.dex new file mode 100644 index 0000000..4699a6a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$style.dex new file mode 100644 index 0000000..2ea0d9c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$styleable.dex new file mode 100644 index 0000000..1bd774a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R.dex new file mode 100644 index 0000000..6fd9558 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/core/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/cursoradapter/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/cursoradapter/R.dex new file mode 100644 index 0000000..72afdbf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/cursoradapter/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$attr.dex new file mode 100644 index 0000000..0452443 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$color.dex new file mode 100644 index 0000000..25c2e0d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$dimen.dex new file mode 100644 index 0000000..44a9212 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$drawable.dex new file mode 100644 index 0000000..78670bb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$id.dex new file mode 100644 index 0000000..2a2cca4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$integer.dex new file mode 100644 index 0000000..5fbf4fb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$layout.dex new file mode 100644 index 0000000..9818c92 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$string.dex new file mode 100644 index 0000000..600ee1b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$style.dex new file mode 100644 index 0000000..a999e00 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$styleable.dex new file mode 100644 index 0000000..64d0911 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R.dex new file mode 100644 index 0000000..cfef60d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/customview/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/documentfile/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/documentfile/R.dex new file mode 100644 index 0000000..ab1d31f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/documentfile/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$attr.dex new file mode 100644 index 0000000..8348de5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$color.dex new file mode 100644 index 0000000..e28d707 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$dimen.dex new file mode 100644 index 0000000..52ba9ef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$drawable.dex new file mode 100644 index 0000000..f487f50 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$id.dex new file mode 100644 index 0000000..352d9b8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$integer.dex new file mode 100644 index 0000000..f140c6e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$layout.dex new file mode 100644 index 0000000..c2f238f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$string.dex new file mode 100644 index 0000000..1082802 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$style.dex new file mode 100644 index 0000000..0977199 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$styleable.dex new file mode 100644 index 0000000..eeabe46 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R.dex new file mode 100644 index 0000000..5e5caf5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/drawerlayout/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$attr.dex new file mode 100644 index 0000000..4472489 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$color.dex new file mode 100644 index 0000000..5d245e9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$dimen.dex new file mode 100644 index 0000000..4afaf1b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$drawable.dex new file mode 100644 index 0000000..70d655c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$id.dex new file mode 100644 index 0000000..26c316f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$integer.dex new file mode 100644 index 0000000..6a02de6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$layout.dex new file mode 100644 index 0000000..52c8fbf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$string.dex new file mode 100644 index 0000000..9fef74a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$style.dex new file mode 100644 index 0000000..f23dcce Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$styleable.dex new file mode 100644 index 0000000..6e82e15 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R.dex new file mode 100644 index 0000000..2c95f42 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/fragment/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/interpolator/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/interpolator/R.dex new file mode 100644 index 0000000..cf0e4d3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/interpolator/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$attr.dex new file mode 100644 index 0000000..acc9a2f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$color.dex new file mode 100644 index 0000000..a9f7ce0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$dimen.dex new file mode 100644 index 0000000..aa54684 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$drawable.dex new file mode 100644 index 0000000..e873061 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$id.dex new file mode 100644 index 0000000..a1447cc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$integer.dex new file mode 100644 index 0000000..d5f7d6b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$layout.dex new file mode 100644 index 0000000..ac50f4b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$string.dex new file mode 100644 index 0000000..a164fc2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$style.dex new file mode 100644 index 0000000..63600d0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$styleable.dex new file mode 100644 index 0000000..7365a17 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R.dex new file mode 100644 index 0000000..edb308b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreui/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$attr.dex new file mode 100644 index 0000000..af95979 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$color.dex new file mode 100644 index 0000000..97aea6b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$dimen.dex new file mode 100644 index 0000000..693dfbb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$drawable.dex new file mode 100644 index 0000000..921238c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$id.dex new file mode 100644 index 0000000..df6c772 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$integer.dex new file mode 100644 index 0000000..309a07f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$layout.dex new file mode 100644 index 0000000..4d97778 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$string.dex new file mode 100644 index 0000000..e56c220 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$style.dex new file mode 100644 index 0000000..84b36c2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$styleable.dex new file mode 100644 index 0000000..538eaf1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R.dex new file mode 100644 index 0000000..6fd8a26 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/legacy/coreutils/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/R.dex new file mode 100644 index 0000000..4f4f329 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/livedata/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/livedata/R.dex new file mode 100644 index 0000000..96865ee Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/livedata/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/livedata/core/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/livedata/core/R.dex new file mode 100644 index 0000000..f9ef2a4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/livedata/core/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/viewmodel/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/viewmodel/R.dex new file mode 100644 index 0000000..ef97806 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/lifecycle/viewmodel/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$attr.dex new file mode 100644 index 0000000..319b1bd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$color.dex new file mode 100644 index 0000000..24478e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$dimen.dex new file mode 100644 index 0000000..eccca86 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$drawable.dex new file mode 100644 index 0000000..5724381 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$id.dex new file mode 100644 index 0000000..5fce486 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$integer.dex new file mode 100644 index 0000000..a6429f0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$layout.dex new file mode 100644 index 0000000..8d4a9fc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$string.dex new file mode 100644 index 0000000..db46d99 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$style.dex new file mode 100644 index 0000000..98f1a81 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$styleable.dex new file mode 100644 index 0000000..9352331 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R.dex new file mode 100644 index 0000000..486e4f0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/loader/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/localbroadcastmanager/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/localbroadcastmanager/R.dex new file mode 100644 index 0000000..f2d3e89 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/localbroadcastmanager/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/print/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/print/R.dex new file mode 100644 index 0000000..32ccb3c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/print/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$attr.dex new file mode 100644 index 0000000..8d390cd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$color.dex new file mode 100644 index 0000000..4b017bf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$dimen.dex new file mode 100644 index 0000000..fe4a01d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$drawable.dex new file mode 100644 index 0000000..36daf46 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$id.dex new file mode 100644 index 0000000..285a844 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$integer.dex new file mode 100644 index 0000000..d166193 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$layout.dex new file mode 100644 index 0000000..3e8f132 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$string.dex new file mode 100644 index 0000000..2deb1e0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$style.dex new file mode 100644 index 0000000..0868dd3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$styleable.dex new file mode 100644 index 0000000..97616e8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R.dex new file mode 100644 index 0000000..63fc659 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/slidingpanelayout/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$attr.dex new file mode 100644 index 0000000..e6cf502 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$color.dex new file mode 100644 index 0000000..bfdb146 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$dimen.dex new file mode 100644 index 0000000..a0e9f37 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$drawable.dex new file mode 100644 index 0000000..662006e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$id.dex new file mode 100644 index 0000000..1a876ab Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$integer.dex new file mode 100644 index 0000000..06f47d9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$layout.dex new file mode 100644 index 0000000..ac1ce83 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$string.dex new file mode 100644 index 0000000..a81f8eb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$style.dex new file mode 100644 index 0000000..683d2e7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$styleable.dex new file mode 100644 index 0000000..7caf6c8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R.dex new file mode 100644 index 0000000..1aad462 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/swiperefreshlayout/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$attr.dex new file mode 100644 index 0000000..b3f7ac8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$color.dex new file mode 100644 index 0000000..165e1c2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$dimen.dex new file mode 100644 index 0000000..4f6ed6f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$drawable.dex new file mode 100644 index 0000000..d7a4d33 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$id.dex new file mode 100644 index 0000000..1f98de0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$integer.dex new file mode 100644 index 0000000..db60cef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$layout.dex new file mode 100644 index 0000000..8fb7276 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$string.dex new file mode 100644 index 0000000..ecdec03 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$style.dex new file mode 100644 index 0000000..426987f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$styleable.dex new file mode 100644 index 0000000..cae0940 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R.dex new file mode 100644 index 0000000..f08932c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/vectordrawable/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/versionedparcelable/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/versionedparcelable/R.dex new file mode 100644 index 0000000..cc52d49 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/versionedparcelable/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$attr.dex new file mode 100644 index 0000000..c4a7b45 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$color.dex new file mode 100644 index 0000000..d01c518 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$dimen.dex new file mode 100644 index 0000000..61bdd09 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$drawable.dex new file mode 100644 index 0000000..4f2ccd6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$id.dex new file mode 100644 index 0000000..59d2dac Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$integer.dex new file mode 100644 index 0000000..cb6c43b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$layout.dex new file mode 100644 index 0000000..46ebef6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$string.dex new file mode 100644 index 0000000..661434a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$style.dex new file mode 100644 index 0000000..224cff6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$styleable.dex new file mode 100644 index 0000000..1052da9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R.dex new file mode 100644 index 0000000..297dd22 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/androidx/viewpager/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$attr.dex new file mode 100644 index 0000000..70f289a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$id.dex new file mode 100644 index 0000000..4fdffd0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$styleable.dex new file mode 100644 index 0000000..ecb62f2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R.dex new file mode 100644 index 0000000..ef6b374 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$attr.dex new file mode 100644 index 0000000..7ecbcc6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$id.dex new file mode 100644 index 0000000..c8bd2d9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$styleable.dex new file mode 100644 index 0000000..d9918c0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R.dex new file mode 100644 index 0000000..8a170e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/drawee/backends/pipeline/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/fbcore/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/fbcore/R.dex new file mode 100644 index 0000000..db968e7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/fbcore/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipeline/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipeline/R.dex new file mode 100644 index 0000000..58f8819 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipeline/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipeline/backends/okhttp3/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipeline/backends/okhttp3/R.dex new file mode 100644 index 0000000..c4a13e4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipeline/backends/okhttp3/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipelinebase/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipelinebase/R.dex new file mode 100644 index 0000000..6d18eed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/imagepipelinebase/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/nativefilters/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/nativefilters/R.dex new file mode 100644 index 0000000..5464eff Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/nativefilters/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/nativeimagetranscoder/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/nativeimagetranscoder/R.dex new file mode 100644 index 0000000..8fe6739 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/nativeimagetranscoder/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/PackageList.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/PackageList.dex new file mode 100644 index 0000000..ae0eb30 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/PackageList.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$anim.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$anim.dex new file mode 100644 index 0000000..4e55ef8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$anim.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$attr.dex new file mode 100644 index 0000000..3ca4d8d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$bool.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$bool.dex new file mode 100644 index 0000000..99649f3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$bool.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$color.dex new file mode 100644 index 0000000..bd14105 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$dimen.dex new file mode 100644 index 0000000..0a94a68 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$drawable.dex new file mode 100644 index 0000000..1fefa52 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$id.dex new file mode 100644 index 0000000..679b2a4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$integer.dex new file mode 100644 index 0000000..0f83c98 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$layout.dex new file mode 100644 index 0000000..0a426ce Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$string.dex new file mode 100644 index 0000000..8ab24bb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$style.dex new file mode 100644 index 0000000..10d9ecd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$styleable.dex new file mode 100644 index 0000000..8705b44 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$xml.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$xml.dex new file mode 100644 index 0000000..cf6821b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R$xml.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R.dex new file mode 100644 index 0000000..24a6273 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/react/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/soloader/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/soloader/R.dex new file mode 100644 index 0000000..d2537ef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/facebook/soloader/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/BuildConfig.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/BuildConfig.dex new file mode 100644 index 0000000..2dff400 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/BuildConfig.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainActivity.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainActivity.dex new file mode 100644 index 0000000..482a26f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainActivity.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainApplication$1.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainApplication$1.dex new file mode 100644 index 0000000..cbbfd6e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainApplication$1.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainApplication.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainApplication.dex new file mode 100644 index 0000000..db8cfe9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/MainApplication.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$anim.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$anim.dex new file mode 100644 index 0000000..d1d1184 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$anim.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$attr.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$attr.dex new file mode 100644 index 0000000..49ef469 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$attr.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$bool.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$bool.dex new file mode 100644 index 0000000..b129800 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$bool.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$color.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$color.dex new file mode 100644 index 0000000..37e5948 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$color.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$dimen.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$dimen.dex new file mode 100644 index 0000000..7e97c46 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$dimen.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$drawable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$drawable.dex new file mode 100644 index 0000000..2fc0669 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$drawable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$id.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$id.dex new file mode 100644 index 0000000..2b9e3e8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$id.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$integer.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$integer.dex new file mode 100644 index 0000000..852afec Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$integer.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$layout.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$layout.dex new file mode 100644 index 0000000..bc02b36 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$layout.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$mipmap.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$mipmap.dex new file mode 100644 index 0000000..2099bb5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$mipmap.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$string.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$string.dex new file mode 100644 index 0000000..7e18415 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$string.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$style.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$style.dex new file mode 100644 index 0000000..934069c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$style.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$styleable.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$styleable.dex new file mode 100644 index 0000000..93090c1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$styleable.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$xml.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$xml.dex new file mode 100644 index 0000000..c4a5126 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R$xml.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R.dex new file mode 100644 index 0000000..e216e11 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/com/memoapp/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/org/webkit/androidjsc/R.dex b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/org/webkit/androidjsc/R.dex new file mode 100644 index 0000000..3b112f0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/192/org/webkit/androidjsc/R.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/2.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/2.jar new file mode 100644 index 0000000..e591f8c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/2.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/20.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/20.jar new file mode 100644 index 0000000..f0258c6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/20.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/21.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/21.jar new file mode 100644 index 0000000..e78a945 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/21.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/22.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/22.jar new file mode 100644 index 0000000..5cd8f17 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/22.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/23.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/23.jar new file mode 100644 index 0000000..be8a3aa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/23.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/24.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/24.jar new file mode 100644 index 0000000..848f432 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/24.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/25.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/25.jar new file mode 100644 index 0000000..915b564 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/25.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/26.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/26.jar new file mode 100644 index 0000000..9d2625e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/26.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/27.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/27.jar new file mode 100644 index 0000000..d7f4676 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/27.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/28.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/28.jar new file mode 100644 index 0000000..08bc4a9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/28.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/29.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/29.jar new file mode 100644 index 0000000..2b512e5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/29.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/3.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/3.jar new file mode 100644 index 0000000..5799be7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/3.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/30.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/30.jar new file mode 100644 index 0000000..7b52bcd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/30.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/31.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/31.jar new file mode 100644 index 0000000..8dad41b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/31.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/32.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/32.jar new file mode 100644 index 0000000..0f2147a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/32.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/34.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/34.jar new file mode 100644 index 0000000..0c92bb5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/34.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/35.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/35.jar new file mode 100644 index 0000000..204dddf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/35.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/36.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/36.jar new file mode 100644 index 0000000..4d8bfa4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/36.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/37.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/37.jar new file mode 100644 index 0000000..f5153fa Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/37.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/38.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/38.jar new file mode 100644 index 0000000..ca91b31 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/38.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/39.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/39.jar new file mode 100644 index 0000000..ad9897d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/39.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/4.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/4.jar new file mode 100644 index 0000000..ffca93c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/4.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/40.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/40.jar new file mode 100644 index 0000000..06a7854 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/40.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/41.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/41.jar new file mode 100644 index 0000000..7ee7235 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/41.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/42.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/42.jar new file mode 100644 index 0000000..e12468c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/42.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/43.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/43.jar new file mode 100644 index 0000000..9a261e2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/43.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/44.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/44.jar new file mode 100644 index 0000000..a4d1886 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/44.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/45.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/45.jar new file mode 100644 index 0000000..f9e403c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/45.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/46.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/46.jar new file mode 100644 index 0000000..d313cac Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/46.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/47.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/47.jar new file mode 100644 index 0000000..9ff3f95 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/47.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/48.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/48.jar new file mode 100644 index 0000000..68d4506 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/48.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/49.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/49.jar new file mode 100644 index 0000000..10b6b25 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/49.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/50.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/50.jar new file mode 100644 index 0000000..6257360 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/50.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/51.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/51.jar new file mode 100644 index 0000000..2704a81 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/51.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/52.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/52.jar new file mode 100644 index 0000000..a2d1855 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/52.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/53.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/53.jar new file mode 100644 index 0000000..aa9965f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/53.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/54.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/54.jar new file mode 100644 index 0000000..a04a095 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/54.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/55.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/55.jar new file mode 100644 index 0000000..443fb08 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/55.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/56.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/56.jar new file mode 100644 index 0000000..f7e8714 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/56.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/57.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/57.jar new file mode 100644 index 0000000..76e70fe Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/57.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/58.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/58.jar new file mode 100644 index 0000000..2b66258 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/58.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/59.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/59.jar new file mode 100644 index 0000000..bbb7f8a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/59.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/60.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/60.jar new file mode 100644 index 0000000..4c8ea4c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/60.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/61.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/61.jar new file mode 100644 index 0000000..ea3b22f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/61.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/62.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/62.jar new file mode 100644 index 0000000..cdaed67 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/62.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/63.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/63.jar new file mode 100644 index 0000000..1a429ab Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/63.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/64.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/64.jar new file mode 100644 index 0000000..17af679 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/64.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/65.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/65.jar new file mode 100644 index 0000000..bc45b98 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/65.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/66.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/66.jar new file mode 100644 index 0000000..2d362a0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/66.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/67.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/67.jar new file mode 100644 index 0000000..7d9420d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/67.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/68.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/68.jar new file mode 100644 index 0000000..3d3c54f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/68.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/69.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/69.jar new file mode 100644 index 0000000..5fc9d51 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/69.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/70.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/70.jar new file mode 100644 index 0000000..0529da5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/70.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/71.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/71.jar new file mode 100644 index 0000000..0216c2a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/71.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/72.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/72.jar new file mode 100644 index 0000000..42df622 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/72.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/73.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/73.jar new file mode 100644 index 0000000..004458e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/73.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/74.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/74.jar new file mode 100644 index 0000000..3ef686f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/74.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/75.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/75.jar new file mode 100644 index 0000000..702a6ae Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/75.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/76.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/76.jar new file mode 100644 index 0000000..3a3c155 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/76.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/77.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/77.jar new file mode 100644 index 0000000..8dcef31 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/77.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/78.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/78.jar new file mode 100644 index 0000000..fb319b5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/78.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/79.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/79.jar new file mode 100644 index 0000000..d5f5be3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/79.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/8.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/8.jar new file mode 100644 index 0000000..1f529cc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/8.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/83.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/83.jar new file mode 100644 index 0000000..b655a38 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/83.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/84.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/84.jar new file mode 100644 index 0000000..d202440 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/84.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/85.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/85.jar new file mode 100644 index 0000000..4c4d7a5 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/85.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/86.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/86.jar new file mode 100644 index 0000000..865cd3e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/86.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/87.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/87.jar new file mode 100644 index 0000000..14dcfb3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/87.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/88.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/88.jar new file mode 100644 index 0000000..929d315 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/88.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/89.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/89.jar new file mode 100644 index 0000000..e134eb0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/89.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/9.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/9.jar new file mode 100644 index 0000000..d1dd4a1 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/9.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/90.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/90.jar new file mode 100644 index 0000000..ea1734c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/90.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/91.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/91.jar new file mode 100644 index 0000000..a4f57a8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/91.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/92.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/92.jar new file mode 100644 index 0000000..6ced104 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/92.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/93.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/93.jar new file mode 100644 index 0000000..9687d34 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/93.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/94.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/94.jar new file mode 100644 index 0000000..c9da072 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/94.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/95.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/95.jar new file mode 100644 index 0000000..91b099f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/95.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/96.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/96.jar new file mode 100644 index 0000000..86e6155 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/96.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/97.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/97.jar new file mode 100644 index 0000000..06d06ed Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/97.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/98.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/98.jar new file mode 100644 index 0000000..b4c6d1f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/98.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/99.jar b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/99.jar new file mode 100644 index 0000000..a59828b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/99.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/__content__.json b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/__content__.json new file mode 100644 index 0000000..7fbb8fb --- /dev/null +++ b/MemoApp/android/app/build/intermediates/transforms/dexBuilder/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\jars\\classes.jar-0","index":0,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\jars\\classes.jar-1","index":1,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\jars\\classes.jar-2","index":2,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bca929c1807d651163180494df382741\\jars\\classes.jar-3","index":3,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0d1d0563ea2ef0f7266293df2a1c2a15\\jars\\classes.jar-0","index":4,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0d1d0563ea2ef0f7266293df2a1c2a15\\jars\\classes.jar-1","index":5,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0d1d0563ea2ef0f7266293df2a1c2a15\\jars\\classes.jar-2","index":6,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0d1d0563ea2ef0f7266293df2a1c2a15\\jars\\classes.jar-3","index":7,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.facebook.infer.annotation\\infer-annotation\\0.11.2\\f514ff4ca022a579d9cf7524846988b646ae4491\\infer-annotation-0.11.2.jar-0","index":8,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.facebook.infer.annotation\\infer-annotation\\0.11.2\\f514ff4ca022a579d9cf7524846988b646ae4491\\infer-annotation-0.11.2.jar-1","index":9,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.facebook.infer.annotation\\infer-annotation\\0.11.2\\f514ff4ca022a579d9cf7524846988b646ae4491\\infer-annotation-0.11.2.jar-2","index":10,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.facebook.infer.annotation\\infer-annotation\\0.11.2\\f514ff4ca022a579d9cf7524846988b646ae4491\\infer-annotation-0.11.2.jar-3","index":11,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\javax.inject\\javax.inject\\1\\6975da39a7040257bd51d21a231b76c915872d38\\javax.inject-1.jar-0","index":12,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\javax.inject\\javax.inject\\1\\6975da39a7040257bd51d21a231b76c915872d38\\javax.inject-1.jar-1","index":13,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\javax.inject\\javax.inject\\1\\6975da39a7040257bd51d21a231b76c915872d38\\javax.inject-1.jar-2","index":14,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\javax.inject\\javax.inject\\1\\6975da39a7040257bd51d21a231b76c915872d38\\javax.inject-1.jar-3","index":15,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\jars\\classes.jar-0","index":16,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\jars\\classes.jar-1","index":17,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\jars\\classes.jar-2","index":18,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\aedcdc8a55929486f5a3458d1752ff86\\jars\\classes.jar-3","index":19,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\82b81b75352f3697dc41678864553557\\jars\\classes.jar-0","index":20,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\82b81b75352f3697dc41678864553557\\jars\\classes.jar-1","index":21,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\82b81b75352f3697dc41678864553557\\jars\\classes.jar-2","index":22,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\82b81b75352f3697dc41678864553557\\jars\\classes.jar-3","index":23,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\62949cc912e925d994b8d35235fc8498\\jars\\classes.jar-0","index":24,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\62949cc912e925d994b8d35235fc8498\\jars\\classes.jar-1","index":25,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\62949cc912e925d994b8d35235fc8498\\jars\\classes.jar-2","index":26,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\62949cc912e925d994b8d35235fc8498\\jars\\classes.jar-3","index":27,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2e68fc3524dae3df32ece7e59db63374\\jars\\classes.jar-0","index":28,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2e68fc3524dae3df32ece7e59db63374\\jars\\classes.jar-1","index":29,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2e68fc3524dae3df32ece7e59db63374\\jars\\classes.jar-2","index":30,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2e68fc3524dae3df32ece7e59db63374\\jars\\classes.jar-3","index":31,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\fe412a6d46d946c4673bff2aae347313\\jars\\classes.jar-0","index":32,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\fe412a6d46d946c4673bff2aae347313\\jars\\classes.jar-1","index":33,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\fe412a6d46d946c4673bff2aae347313\\jars\\classes.jar-2","index":34,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\fe412a6d46d946c4673bff2aae347313\\jars\\classes.jar-3","index":35,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\6b69a7d5a471ff7016d80e730eb6ac64\\jars\\classes.jar-0","index":36,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\6b69a7d5a471ff7016d80e730eb6ac64\\jars\\classes.jar-1","index":37,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\6b69a7d5a471ff7016d80e730eb6ac64\\jars\\classes.jar-2","index":38,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\6b69a7d5a471ff7016d80e730eb6ac64\\jars\\classes.jar-3","index":39,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\3813b84966093f687ff82344ba2c2cab\\jars\\classes.jar-0","index":40,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\3813b84966093f687ff82344ba2c2cab\\jars\\classes.jar-1","index":41,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\3813b84966093f687ff82344ba2c2cab\\jars\\classes.jar-2","index":42,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\3813b84966093f687ff82344ba2c2cab\\jars\\classes.jar-3","index":43,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d62832060a9febd4d997edae3028a12c\\jars\\classes.jar-0","index":44,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d62832060a9febd4d997edae3028a12c\\jars\\classes.jar-1","index":45,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d62832060a9febd4d997edae3028a12c\\jars\\classes.jar-2","index":46,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d62832060a9febd4d997edae3028a12c\\jars\\classes.jar-3","index":47,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2dee58b1828e771b61c403e3c41dbfb6\\jars\\classes.jar-0","index":48,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2dee58b1828e771b61c403e3c41dbfb6\\jars\\classes.jar-1","index":49,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2dee58b1828e771b61c403e3c41dbfb6\\jars\\classes.jar-2","index":50,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2dee58b1828e771b61c403e3c41dbfb6\\jars\\classes.jar-3","index":51,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.google.code.findbugs\\jsr305\\3.0.2\\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\\jsr305-3.0.2.jar-0","index":52,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.google.code.findbugs\\jsr305\\3.0.2\\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\\jsr305-3.0.2.jar-1","index":53,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.google.code.findbugs\\jsr305\\3.0.2\\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\\jsr305-3.0.2.jar-2","index":54,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.google.code.findbugs\\jsr305\\3.0.2\\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\\jsr305-3.0.2.jar-3","index":55,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp-urlconnection\\3.12.1\\f689d3657c3f1fdbde4877bcddc668491a4ad46f\\okhttp-urlconnection-3.12.1.jar-0","index":56,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp-urlconnection\\3.12.1\\f689d3657c3f1fdbde4877bcddc668491a4ad46f\\okhttp-urlconnection-3.12.1.jar-1","index":57,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp-urlconnection\\3.12.1\\f689d3657c3f1fdbde4877bcddc668491a4ad46f\\okhttp-urlconnection-3.12.1.jar-2","index":58,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp-urlconnection\\3.12.1\\f689d3657c3f1fdbde4877bcddc668491a4ad46f\\okhttp-urlconnection-3.12.1.jar-3","index":59,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp\\3.12.1\\dc6d02e4e68514eff5631963e28ca7742ac69efe\\okhttp-3.12.1.jar-0","index":60,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp\\3.12.1\\dc6d02e4e68514eff5631963e28ca7742ac69efe\\okhttp-3.12.1.jar-1","index":61,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp\\3.12.1\\dc6d02e4e68514eff5631963e28ca7742ac69efe\\okhttp-3.12.1.jar-2","index":62,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okhttp3\\okhttp\\3.12.1\\dc6d02e4e68514eff5631963e28ca7742ac69efe\\okhttp-3.12.1.jar-3","index":63,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okio\\okio\\1.15.0\\bc28b5a964c8f5721eb58ee3f3c47a9bcbf4f4d8\\okio-1.15.0.jar-0","index":64,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okio\\okio\\1.15.0\\bc28b5a964c8f5721eb58ee3f3c47a9bcbf4f4d8\\okio-1.15.0.jar-1","index":65,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okio\\okio\\1.15.0\\bc28b5a964c8f5721eb58ee3f3c47a9bcbf4f4d8\\okio-1.15.0.jar-2","index":66,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.squareup.okio\\okio\\1.15.0\\bc28b5a964c8f5721eb58ee3f3c47a9bcbf4f4d8\\okio-1.15.0.jar-3","index":67,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\06504b814f8c53937b1558fb82a51be9\\jars\\classes.jar-0","index":68,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\06504b814f8c53937b1558fb82a51be9\\jars\\classes.jar-1","index":69,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\06504b814f8c53937b1558fb82a51be9\\jars\\classes.jar-2","index":70,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\06504b814f8c53937b1558fb82a51be9\\jars\\classes.jar-3","index":71,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d430d20bc1395ecd21240373814bc8c8\\jars\\classes.jar-0","index":72,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d430d20bc1395ecd21240373814bc8c8\\jars\\classes.jar-1","index":73,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d430d20bc1395ecd21240373814bc8c8\\jars\\classes.jar-2","index":74,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d430d20bc1395ecd21240373814bc8c8\\jars\\classes.jar-3","index":75,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\95d99336fc974441ba50d1279e5fd5ff\\jars\\classes.jar-0","index":76,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\95d99336fc974441ba50d1279e5fd5ff\\jars\\classes.jar-1","index":77,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\95d99336fc974441ba50d1279e5fd5ff\\jars\\classes.jar-2","index":78,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\95d99336fc974441ba50d1279e5fd5ff\\jars\\classes.jar-3","index":79,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4e9597e928325627ba1600aecbd9532b\\jars\\classes.jar-0","index":80,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4e9597e928325627ba1600aecbd9532b\\jars\\classes.jar-1","index":81,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4e9597e928325627ba1600aecbd9532b\\jars\\classes.jar-2","index":82,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4e9597e928325627ba1600aecbd9532b\\jars\\classes.jar-3","index":83,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\19daf773e254bb9562cb4c3aa336cc31\\jars\\classes.jar-0","index":84,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\19daf773e254bb9562cb4c3aa336cc31\\jars\\classes.jar-1","index":85,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\19daf773e254bb9562cb4c3aa336cc31\\jars\\classes.jar-2","index":86,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\19daf773e254bb9562cb4c3aa336cc31\\jars\\classes.jar-3","index":87,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4cba707bbf3d32e9e7718c7793e53dab\\jars\\classes.jar-0","index":88,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4cba707bbf3d32e9e7718c7793e53dab\\jars\\classes.jar-1","index":89,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4cba707bbf3d32e9e7718c7793e53dab\\jars\\classes.jar-2","index":90,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4cba707bbf3d32e9e7718c7793e53dab\\jars\\classes.jar-3","index":91,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\052a577b527e40fc46f4f41602af6af2\\jars\\classes.jar-0","index":92,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\052a577b527e40fc46f4f41602af6af2\\jars\\classes.jar-1","index":93,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\052a577b527e40fc46f4f41602af6af2\\jars\\classes.jar-2","index":94,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\052a577b527e40fc46f4f41602af6af2\\jars\\classes.jar-3","index":95,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\7cb3bf965fb549f257feb3d32a73f3e9\\jars\\classes.jar-0","index":96,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\7cb3bf965fb549f257feb3d32a73f3e9\\jars\\classes.jar-1","index":97,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\7cb3bf965fb549f257feb3d32a73f3e9\\jars\\classes.jar-2","index":98,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\7cb3bf965fb549f257feb3d32a73f3e9\\jars\\classes.jar-3","index":99,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d83c7b37f3fbef0148d0d8096341fd38\\jars\\classes.jar-0","index":100,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d83c7b37f3fbef0148d0d8096341fd38\\jars\\classes.jar-1","index":101,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d83c7b37f3fbef0148d0d8096341fd38\\jars\\classes.jar-2","index":102,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\d83c7b37f3fbef0148d0d8096341fd38\\jars\\classes.jar-3","index":103,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a2432d8cee2cf0ea286927b8d5caabc6\\jars\\classes.jar-0","index":104,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a2432d8cee2cf0ea286927b8d5caabc6\\jars\\classes.jar-1","index":105,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a2432d8cee2cf0ea286927b8d5caabc6\\jars\\classes.jar-2","index":106,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a2432d8cee2cf0ea286927b8d5caabc6\\jars\\classes.jar-3","index":107,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\9d7bd08bee3c276388631c3dc6126e8a\\jars\\classes.jar-0","index":108,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\9d7bd08bee3c276388631c3dc6126e8a\\jars\\classes.jar-1","index":109,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\9d7bd08bee3c276388631c3dc6126e8a\\jars\\classes.jar-2","index":110,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\9d7bd08bee3c276388631c3dc6126e8a\\jars\\classes.jar-3","index":111,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\07a542202b32ff274277b4fd243ddf58\\jars\\classes.jar-0","index":112,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\07a542202b32ff274277b4fd243ddf58\\jars\\classes.jar-1","index":113,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\07a542202b32ff274277b4fd243ddf58\\jars\\classes.jar-2","index":114,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\07a542202b32ff274277b4fd243ddf58\\jars\\classes.jar-3","index":115,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\97ab33b58f11e128b9d911b094e4f245\\jars\\classes.jar-0","index":116,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\97ab33b58f11e128b9d911b094e4f245\\jars\\classes.jar-1","index":117,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\97ab33b58f11e128b9d911b094e4f245\\jars\\classes.jar-2","index":118,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\97ab33b58f11e128b9d911b094e4f245\\jars\\classes.jar-3","index":119,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\jars\\classes.jar-0","index":120,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\jars\\classes.jar-1","index":121,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\jars\\classes.jar-2","index":122,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\a705e67638cc409c76634b7109066f41\\jars\\classes.jar-3","index":123,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\f76ccf7fc4f3a172697561e85d770bfc\\jars\\classes.jar-0","index":124,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\f76ccf7fc4f3a172697561e85d770bfc\\jars\\classes.jar-1","index":125,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\f76ccf7fc4f3a172697561e85d770bfc\\jars\\classes.jar-2","index":126,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\f76ccf7fc4f3a172697561e85d770bfc\\jars\\classes.jar-3","index":127,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.collection\\collection\\1.0.0\\42858b26cafdaa69b6149f45dfc2894007bc2c7a\\collection-1.0.0.jar-0","index":128,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.collection\\collection\\1.0.0\\42858b26cafdaa69b6149f45dfc2894007bc2c7a\\collection-1.0.0.jar-1","index":129,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.collection\\collection\\1.0.0\\42858b26cafdaa69b6149f45dfc2894007bc2c7a\\collection-1.0.0.jar-2","index":130,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.collection\\collection\\1.0.0\\42858b26cafdaa69b6149f45dfc2894007bc2c7a\\collection-1.0.0.jar-3","index":131,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\914d232d1ae48b78b4731bc44edf1a26\\jars\\classes.jar-0","index":132,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\914d232d1ae48b78b4731bc44edf1a26\\jars\\classes.jar-1","index":133,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\914d232d1ae48b78b4731bc44edf1a26\\jars\\classes.jar-2","index":134,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\914d232d1ae48b78b4731bc44edf1a26\\jars\\classes.jar-3","index":135,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\16325c75ebcc141d7fe90ef6c54b2e19\\jars\\classes.jar-0","index":136,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\16325c75ebcc141d7fe90ef6c54b2e19\\jars\\classes.jar-1","index":137,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\16325c75ebcc141d7fe90ef6c54b2e19\\jars\\classes.jar-2","index":138,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\16325c75ebcc141d7fe90ef6c54b2e19\\jars\\classes.jar-3","index":139,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\31b2dda524a9a01c805103b1fe863731\\jars\\classes.jar-0","index":140,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\31b2dda524a9a01c805103b1fe863731\\jars\\classes.jar-1","index":141,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\31b2dda524a9a01c805103b1fe863731\\jars\\classes.jar-2","index":142,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\31b2dda524a9a01c805103b1fe863731\\jars\\classes.jar-3","index":143,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bd1819c831f8b5133c1b1c5433bc5705\\jars\\classes.jar-0","index":144,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bd1819c831f8b5133c1b1c5433bc5705\\jars\\classes.jar-1","index":145,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bd1819c831f8b5133c1b1c5433bc5705\\jars\\classes.jar-2","index":146,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\bd1819c831f8b5133c1b1c5433bc5705\\jars\\classes.jar-3","index":147,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2907956fb4597899691fd5a217c3120b\\jars\\classes.jar-0","index":148,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2907956fb4597899691fd5a217c3120b\\jars\\classes.jar-1","index":149,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2907956fb4597899691fd5a217c3120b\\jars\\classes.jar-2","index":150,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\2907956fb4597899691fd5a217c3120b\\jars\\classes.jar-3","index":151,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\98155a16bd645a678da4c71779ad228f\\jars\\classes.jar-0","index":152,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\98155a16bd645a678da4c71779ad228f\\jars\\classes.jar-1","index":153,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\98155a16bd645a678da4c71779ad228f\\jars\\classes.jar-2","index":154,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\98155a16bd645a678da4c71779ad228f\\jars\\classes.jar-3","index":155,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\e90057b2254ddc5290d46ccdf15dd3a5\\jars\\classes.jar-0","index":156,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\e90057b2254ddc5290d46ccdf15dd3a5\\jars\\classes.jar-1","index":157,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\e90057b2254ddc5290d46ccdf15dd3a5\\jars\\classes.jar-2","index":158,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\e90057b2254ddc5290d46ccdf15dd3a5\\jars\\classes.jar-3","index":159,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0bd5d80ecf7b27cf41d869986c4e2a14\\jars\\classes.jar-0","index":160,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0bd5d80ecf7b27cf41d869986c4e2a14\\jars\\classes.jar-1","index":161,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0bd5d80ecf7b27cf41d869986c4e2a14\\jars\\classes.jar-2","index":162,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\0bd5d80ecf7b27cf41d869986c4e2a14\\jars\\classes.jar-3","index":163,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.lifecycle\\lifecycle-common\\2.0.0\\e070ffae07452331bc5684734fce6831d531785c\\lifecycle-common-2.0.0.jar-0","index":164,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.lifecycle\\lifecycle-common\\2.0.0\\e070ffae07452331bc5684734fce6831d531785c\\lifecycle-common-2.0.0.jar-1","index":165,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.lifecycle\\lifecycle-common\\2.0.0\\e070ffae07452331bc5684734fce6831d531785c\\lifecycle-common-2.0.0.jar-2","index":166,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.lifecycle\\lifecycle-common\\2.0.0\\e070ffae07452331bc5684734fce6831d531785c\\lifecycle-common-2.0.0.jar-3","index":167,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4c1ad5332862af17183a73fea3ed6da5\\jars\\classes.jar-0","index":168,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4c1ad5332862af17183a73fea3ed6da5\\jars\\classes.jar-1","index":169,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4c1ad5332862af17183a73fea3ed6da5\\jars\\classes.jar-2","index":170,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\4c1ad5332862af17183a73fea3ed6da5\\jars\\classes.jar-3","index":171,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.arch.core\\core-common\\2.0.0\\bb21b9a11761451b51624ac428d1f1bb5deeac38\\core-common-2.0.0.jar-0","index":172,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.arch.core\\core-common\\2.0.0\\bb21b9a11761451b51624ac428d1f1bb5deeac38\\core-common-2.0.0.jar-1","index":173,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.arch.core\\core-common\\2.0.0\\bb21b9a11761451b51624ac428d1f1bb5deeac38\\core-common-2.0.0.jar-2","index":174,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.arch.core\\core-common\\2.0.0\\bb21b9a11761451b51624ac428d1f1bb5deeac38\\core-common-2.0.0.jar-3","index":175,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\316f16b8f94e3787cc5e3bae2aa48cf3\\jars\\classes.jar-0","index":176,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\316f16b8f94e3787cc5e3bae2aa48cf3\\jars\\classes.jar-1","index":177,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":false},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\316f16b8f94e3787cc5e3bae2aa48cf3\\jars\\classes.jar-2","index":178,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\316f16b8f94e3787cc5e3bae2aa48cf3\\jars\\classes.jar-3","index":179,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.annotation\\annotation\\1.0.0\\45599f2cd5965ac05a1488fa2a5c0cdd7c499ead\\annotation-1.0.0.jar-0","index":180,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.annotation\\annotation\\1.0.0\\45599f2cd5965ac05a1488fa2a5c0cdd7c499ead\\annotation-1.0.0.jar-1","index":181,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.annotation\\annotation\\1.0.0\\45599f2cd5965ac05a1488fa2a5c0cdd7c499ead\\annotation-1.0.0.jar-2","index":182,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\androidx.annotation\\annotation\\1.0.0\\45599f2cd5965ac05a1488fa2a5c0cdd7c499ead\\annotation-1.0.0.jar-3","index":183,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\12ba8d47021786fcf6373e4657623e1f\\jars\\classes.jar-0","index":184,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\12ba8d47021786fcf6373e4657623e1f\\jars\\classes.jar-1","index":185,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\12ba8d47021786fcf6373e4657623e1f\\jars\\classes.jar-2","index":186,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\transforms-2\\files-2.1\\12ba8d47021786fcf6373e4657623e1f\\jars\\classes.jar-3","index":187,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.parse.bolts\\bolts-tasks\\1.4.0\\d85884acf6810a3bbbecb587f239005cbc846dc4\\bolts-tasks-1.4.0.jar-0","index":188,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.parse.bolts\\bolts-tasks\\1.4.0\\d85884acf6810a3bbbecb587f239005cbc846dc4\\bolts-tasks-1.4.0.jar-1","index":189,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.parse.bolts\\bolts-tasks\\1.4.0\\d85884acf6810a3bbbecb587f239005cbc846dc4\\bolts-tasks-1.4.0.jar-2","index":190,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\.gradle\\caches\\modules-2\\files-2.1\\com.parse.bolts\\bolts-tasks\\1.4.0\\d85884acf6810a3bbbecb587f239005cbc846dc4\\bolts-tasks-1.4.0.jar-3","index":191,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"JAR","present":true},{"name":"C:\\Users\\Pyke\\Documents\\GitHub\\MemoApp\\MemoApp\\android\\app\\build\\intermediates\\javac\\debug\\compileDebugJavaWithJavac\\classes","index":192,"scopes":["PROJECT"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex b/MemoApp/android/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex new file mode 100644 index 0000000..0745d3c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/dexMerger/debug/__content__.json b/MemoApp/android/app/build/intermediates/transforms/dexMerger/debug/__content__.json new file mode 100644 index 0000000..5148dae --- /dev/null +++ b/MemoApp/android/app/build/intermediates/transforms/dexMerger/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"main","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES","MAIN_SPLIT"],"types":["DEX"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex b/MemoApp/android/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex new file mode 100644 index 0000000..a4b40dd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex differ diff --git a/MemoApp/android/app/build/intermediates/transforms/externalLibsDexMerger/debug/__content__.json b/MemoApp/android/app/build/intermediates/transforms/externalLibsDexMerger/debug/__content__.json new file mode 100644 index 0000000..30a17cd --- /dev/null +++ b/MemoApp/android/app/build/intermediates/transforms/externalLibsDexMerger/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"main","index":0,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar b/MemoApp/android/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar new file mode 100644 index 0000000..90bf726 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJavaRes/debug/__content__.json b/MemoApp/android/app/build/intermediates/transforms/mergeJavaRes/debug/__content__.json new file mode 100644 index 0000000..bd29a84 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/transforms/mergeJavaRes/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["RESOURCES"],"format":"JAR","present":true}] \ No newline at end of file diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_shared.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_shared.so new file mode 100644 index 0000000..fbc47dc Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_shared.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfb.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfb.so new file mode 100644 index 0000000..1c9c0c4 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfb.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfolly_futures.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfolly_futures.so new file mode 100644 index 0000000..2f7b66d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfolly_futures.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfolly_json.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfolly_json.so new file mode 100644 index 0000000..4c48948 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libfolly_json.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libglog.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libglog.so new file mode 100644 index 0000000..80b9d57 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libglog.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libglog_init.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libglog_init.so new file mode 100644 index 0000000..65a92c9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libglog_init.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libimagepipeline.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libimagepipeline.so new file mode 100644 index 0000000..8375aaf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libimagepipeline.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsc.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsc.so new file mode 100644 index 0000000..e997f19 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsc.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjscexecutor.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjscexecutor.so new file mode 100644 index 0000000..ceb7fee Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjscexecutor.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsijniprofiler.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsijniprofiler.so new file mode 100644 index 0000000..696b942 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsijniprofiler.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsinspector.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsinspector.so new file mode 100644 index 0000000..7249e44 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libjsinspector.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libnative-filters.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libnative-filters.so new file mode 100644 index 0000000..bcc0128 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libnative-filters.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libnative-imagetranscoder.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libnative-imagetranscoder.so new file mode 100644 index 0000000..5a186ef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libnative-imagetranscoder.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libreactnativejni.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libreactnativejni.so new file mode 100644 index 0000000..b815c4c Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libreactnativejni.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libyoga.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libyoga.so new file mode 100644 index 0000000..168e73d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libyoga.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libc++_shared.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libc++_shared.so new file mode 100644 index 0000000..18c7925 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libc++_shared.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfb.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfb.so new file mode 100644 index 0000000..49d1b3d Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfb.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfolly_futures.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfolly_futures.so new file mode 100644 index 0000000..86a10f2 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfolly_futures.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfolly_json.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfolly_json.so new file mode 100644 index 0000000..a8a91e9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libfolly_json.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libglog.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libglog.so new file mode 100644 index 0000000..ed31894 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libglog.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libglog_init.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libglog_init.so new file mode 100644 index 0000000..696ec24 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libglog_init.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libimagepipeline.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libimagepipeline.so new file mode 100644 index 0000000..a01c8c3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libimagepipeline.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsc.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsc.so new file mode 100644 index 0000000..0b28059 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsc.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjscexecutor.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjscexecutor.so new file mode 100644 index 0000000..41a611f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjscexecutor.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsijniprofiler.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsijniprofiler.so new file mode 100644 index 0000000..da1e519 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsijniprofiler.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsinspector.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsinspector.so new file mode 100644 index 0000000..a4d9708 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libjsinspector.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libnative-filters.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libnative-filters.so new file mode 100644 index 0000000..b4a80cd Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libnative-filters.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libnative-imagetranscoder.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libnative-imagetranscoder.so new file mode 100644 index 0000000..25868e7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libnative-imagetranscoder.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libreactnativejni.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libreactnativejni.so new file mode 100644 index 0000000..c3bb8cf Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libreactnativejni.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libyoga.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libyoga.so new file mode 100644 index 0000000..ce1dae9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libyoga.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libc++_shared.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libc++_shared.so new file mode 100644 index 0000000..51d23ef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libc++_shared.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfb.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfb.so new file mode 100644 index 0000000..5c8faff Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfb.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfolly_futures.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfolly_futures.so new file mode 100644 index 0000000..6da5bc6 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfolly_futures.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfolly_json.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfolly_json.so new file mode 100644 index 0000000..b96f4d0 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libfolly_json.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libglog.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libglog.so new file mode 100644 index 0000000..7c08b03 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libglog.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libglog_init.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libglog_init.so new file mode 100644 index 0000000..c32df4b Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libglog_init.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libimagepipeline.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libimagepipeline.so new file mode 100644 index 0000000..97780b7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libimagepipeline.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsc.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsc.so new file mode 100644 index 0000000..2bbf435 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsc.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjscexecutor.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjscexecutor.so new file mode 100644 index 0000000..0097825 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjscexecutor.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsijniprofiler.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsijniprofiler.so new file mode 100644 index 0000000..477d1bb Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsijniprofiler.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsinspector.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsinspector.so new file mode 100644 index 0000000..f3bc9d8 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libjsinspector.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libnative-filters.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libnative-filters.so new file mode 100644 index 0000000..1adf893 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libnative-filters.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libnative-imagetranscoder.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libnative-imagetranscoder.so new file mode 100644 index 0000000..4de9c60 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libnative-imagetranscoder.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libreactnativejni.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libreactnativejni.so new file mode 100644 index 0000000..a01a13a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libreactnativejni.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libyoga.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libyoga.so new file mode 100644 index 0000000..ee8bea7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libyoga.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libc++_shared.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libc++_shared.so new file mode 100644 index 0000000..780e9ae Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libc++_shared.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfb.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfb.so new file mode 100644 index 0000000..fe9219e Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfb.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfolly_futures.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfolly_futures.so new file mode 100644 index 0000000..bedd828 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfolly_futures.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfolly_json.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfolly_json.so new file mode 100644 index 0000000..3c97ec7 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libfolly_json.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libglog.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libglog.so new file mode 100644 index 0000000..8f9ebef Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libglog.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libglog_init.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libglog_init.so new file mode 100644 index 0000000..2b893f9 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libglog_init.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libimagepipeline.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libimagepipeline.so new file mode 100644 index 0000000..19e7c8a Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libimagepipeline.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsc.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsc.so new file mode 100644 index 0000000..2016ced Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsc.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjscexecutor.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjscexecutor.so new file mode 100644 index 0000000..000f429 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjscexecutor.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsijniprofiler.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsijniprofiler.so new file mode 100644 index 0000000..2498898 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsijniprofiler.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsinspector.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsinspector.so new file mode 100644 index 0000000..757f435 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libjsinspector.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libnative-filters.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libnative-filters.so new file mode 100644 index 0000000..7c16650 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libnative-filters.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libnative-imagetranscoder.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libnative-imagetranscoder.so new file mode 100644 index 0000000..071b767 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libnative-imagetranscoder.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libreactnativejni.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libreactnativejni.so new file mode 100644 index 0000000..2061ba3 Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libreactnativejni.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libyoga.so b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libyoga.so new file mode 100644 index 0000000..e4e0a6f Binary files /dev/null and b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libyoga.so differ diff --git a/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/__content__.json b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/__content__.json new file mode 100644 index 0000000..86722f5 --- /dev/null +++ b/MemoApp/android/app/build/intermediates/transforms/mergeJniLibs/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/MemoApp/android/app/build/outputs/apk/debug/app-debug.apk b/MemoApp/android/app/build/outputs/apk/debug/app-debug.apk new file mode 100644 index 0000000..a641980 Binary files /dev/null and b/MemoApp/android/app/build/outputs/apk/debug/app-debug.apk differ diff --git a/MemoApp/android/app/build/outputs/apk/debug/output.json b/MemoApp/android/app/build/outputs/apk/debug/output.json new file mode 100644 index 0000000..92a0784 --- /dev/null +++ b/MemoApp/android/app/build/outputs/apk/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"app-debug.apk","properties":{}}] \ No newline at end of file diff --git a/MemoApp/app.json b/MemoApp/app.json new file mode 100644 index 0000000..b9b4738 --- /dev/null +++ b/MemoApp/app.json @@ -0,0 +1,4 @@ +{ + "name": "MemoApp", + "displayName": "MemoApp" +} \ No newline at end of file diff --git a/MemoApp/babel.config.js b/MemoApp/babel.config.js new file mode 100644 index 0000000..f842b77 --- /dev/null +++ b/MemoApp/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + presets: ['module:metro-react-native-babel-preset'], +}; diff --git a/MemoApp/index.js b/MemoApp/index.js new file mode 100644 index 0000000..a850d03 --- /dev/null +++ b/MemoApp/index.js @@ -0,0 +1,9 @@ +/** + * @format + */ + +import {AppRegistry} from 'react-native'; +import App from './App'; +import {name as appName} from './app.json'; + +AppRegistry.registerComponent(appName, () => App); diff --git a/MemoApp/metro.config.js b/MemoApp/metro.config.js new file mode 100644 index 0000000..13a9642 --- /dev/null +++ b/MemoApp/metro.config.js @@ -0,0 +1,17 @@ +/** + * Metro configuration for React Native + * https://github.com/facebook/react-native + * + * @format + */ + +module.exports = { + transformer: { + getTransformOptions: async () => ({ + transform: { + experimentalImportSupport: false, + inlineRequires: false, + }, + }), + }, +}; diff --git a/MemoApp/package.json b/MemoApp/package.json new file mode 100644 index 0000000..0e74a03 --- /dev/null +++ b/MemoApp/package.json @@ -0,0 +1,29 @@ +{ + "name": "MemoApp", + "version": "0.0.1", + "private": true, + "scripts": { + "android": "react-native run-android", + "ios": "react-native run-ios", + "start": "react-native start", + "test": "jest", + "lint": "eslint ." + }, + "dependencies": { + "react": "16.9.0", + "react-native": "0.61.2" + }, + "devDependencies": { + "@babel/core": "7.6.4", + "@babel/runtime": "7.6.3", + "@react-native-community/eslint-config": "0.0.3", + "babel-jest": "24.9.0", + "eslint": "6.5.1", + "jest": "24.9.0", + "metro-react-native-babel-preset": "0.51.1", + "react-test-renderer": "16.9.0" + }, + "jest": { + "preset": "react-native" + } +}