diff --git a/GameAtlas/.vs/GameAtlas/v17/.suo b/GameAtlas/.vs/GameAtlas/v17/.suo index 615ee95..4eadc85 100644 Binary files a/GameAtlas/.vs/GameAtlas/v17/.suo and b/GameAtlas/.vs/GameAtlas/v17/.suo differ diff --git a/GameAtlas/GameAtlas.sln b/GameAtlas/GameAtlas.sln index 6d06784..29d4f7c 100644 --- a/GameAtlas/GameAtlas.sln +++ b/GameAtlas/GameAtlas.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31611.283 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GameAtlas", "GameAtlas\GameAtlas.csproj", "{1E4453D5-5C58-45AB-8366-3EC53D520816}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GameAtlas", "GameAtlas\GameAtlas.csproj", "{D3C0D86A-FF1B-4C1B-AA60-537889127607}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,12 +11,12 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1E4453D5-5C58-45AB-8366-3EC53D520816}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1E4453D5-5C58-45AB-8366-3EC53D520816}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1E4453D5-5C58-45AB-8366-3EC53D520816}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {1E4453D5-5C58-45AB-8366-3EC53D520816}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1E4453D5-5C58-45AB-8366-3EC53D520816}.Release|Any CPU.Build.0 = Release|Any CPU - {1E4453D5-5C58-45AB-8366-3EC53D520816}.Release|Any CPU.Deploy.0 = Release|Any CPU + {D3C0D86A-FF1B-4C1B-AA60-537889127607}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3C0D86A-FF1B-4C1B-AA60-537889127607}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3C0D86A-FF1B-4C1B-AA60-537889127607}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {D3C0D86A-FF1B-4C1B-AA60-537889127607}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3C0D86A-FF1B-4C1B-AA60-537889127607}.Release|Any CPU.Build.0 = Release|Any CPU + {D3C0D86A-FF1B-4C1B-AA60-537889127607}.Release|Any CPU.Deploy.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/GameAtlas/GameAtlas/AppShell.xaml b/GameAtlas/GameAtlas/AppShell.xaml index 286754a..80cd337 100644 --- a/GameAtlas/GameAtlas/AppShell.xaml +++ b/GameAtlas/GameAtlas/AppShell.xaml @@ -5,20 +5,23 @@ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:views="clr-namespace:GameAtlas.Views" Shell.NavBarIsVisible="false" - Shell.TabBarIsVisible="false" Shell.FlyoutBehavior="Disabled"> - + + + - + + + - + diff --git a/GameAtlas/GameAtlas/GameAtlas.csproj b/GameAtlas/GameAtlas/GameAtlas.csproj index 4c9d3af..3d09237 100644 --- a/GameAtlas/GameAtlas/GameAtlas.csproj +++ b/GameAtlas/GameAtlas/GameAtlas.csproj @@ -1,10 +1,10 @@  - net6.0-android;net6.0-ios;net6.0-maccatalyst - $(TargetFrameworks);net6.0-windows10.0.19041.0 + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 - + Exe GameAtlas true @@ -16,14 +16,14 @@ com.companyname.gameatlas - 62512753-dfda-48fe-857d-25a91df9589f + a4373575-ecb5-4bcd-9c57-7366fb6946a7 1.0 1 - 14.2 - 14.0 + 11.0 + 13.1 21.0 10.0.17763.0 10.0.17763.0 @@ -49,9 +49,12 @@ - - PageConnexion.xaml - + + + + + + diff --git a/GameAtlas/GameAtlas/GameAtlas.csproj.user b/GameAtlas/GameAtlas/GameAtlas.csproj.user index 99c7820..53a06b3 100644 --- a/GameAtlas/GameAtlas/GameAtlas.csproj.user +++ b/GameAtlas/GameAtlas/GameAtlas.csproj.user @@ -2,21 +2,10 @@ False - net6.0-windows10.0.19041.0 + net7.0-windows10.0.19041.0 Windows Machine - PhysicalDevice - - - iossimulator-x64 - x64 - - - ProjectDebugger - - Designer - Designer diff --git a/GameAtlas/GameAtlas/MauiProgram.cs b/GameAtlas/GameAtlas/MauiProgram.cs index 79e5df8..e241d54 100644 --- a/GameAtlas/GameAtlas/MauiProgram.cs +++ b/GameAtlas/GameAtlas/MauiProgram.cs @@ -1,4 +1,7 @@ -namespace GameAtlas; +using CommunityToolkit.Maui; +using Microsoft.Extensions.Logging; + +namespace GameAtlas; public static class MauiProgram { @@ -7,12 +10,17 @@ public static class MauiProgram var builder = MauiApp.CreateBuilder(); builder .UseMauiApp() - .ConfigureFonts(fonts => + .UseMauiCommunityToolkit() + .ConfigureFonts(fonts => { fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); }); +#if DEBUG + builder.Logging.AddDebug(); +#endif + return builder.Build(); } } diff --git a/GameAtlas/GameAtlas/Platforms/Windows/Package.appxmanifest b/GameAtlas/GameAtlas/Platforms/Windows/Package.appxmanifest index d426982..205af0c 100644 --- a/GameAtlas/GameAtlas/Platforms/Windows/Package.appxmanifest +++ b/GameAtlas/GameAtlas/Platforms/Windows/Package.appxmanifest @@ -8,7 +8,7 @@ - + $placeholder$ diff --git a/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Regular.ttf b/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Regular.ttf index a49f11d..e248a95 100644 Binary files a/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Regular.ttf and b/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Regular.ttf differ diff --git a/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Semibold.ttf b/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Semibold.ttf index 23911e4..dbc9572 100644 Binary files a/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Semibold.ttf and b/GameAtlas/GameAtlas/Resources/Fonts/OpenSans-Semibold.ttf differ diff --git a/GameAtlas/GameAtlas/Resources/Styles/Styles.xaml b/GameAtlas/GameAtlas/Resources/Styles/Styles.xaml index e7eefdb..050b36c 100644 --- a/GameAtlas/GameAtlas/Resources/Styles/Styles.xaml +++ b/GameAtlas/GameAtlas/Resources/Styles/Styles.xaml @@ -30,6 +30,8 @@ + + @@ -47,6 +49,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122.stamp b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122.stamp deleted file mode 100644 index a991b8b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122.stamp +++ /dev/null @@ -1 +0,0 @@ -A4D031B0934DD356 \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/AndroidManifest.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/AndroidManifest.xml deleted file mode 100644 index 8e88be0..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/AndroidManifest.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/META-INF/com/android/build/gradle/aar-metadata.properties deleted file mode 100644 index c68e484..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/META-INF/com/android/build/gradle/aar-metadata.properties +++ /dev/null @@ -1,3 +0,0 @@ -aarFormatVersion=1.0 -aarMetadataVersion=1.0 -minCompileSdk=31 diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/R.txt b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/R.txt deleted file mode 100644 index 0c85471..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/R.txt +++ /dev/null @@ -1,25 +0,0 @@ -int drawable abc_vector_test 0x0 -int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -int styleable AnimatedStateListDrawableCompat_android_dither 1 -int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -int styleable AnimatedStateListDrawableCompat_android_visible 5 -int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -int styleable AnimatedStateListDrawableItem_android_drawable 0 -int styleable AnimatedStateListDrawableItem_android_id 1 -int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -int styleable AnimatedStateListDrawableTransition_android_drawable 0 -int styleable AnimatedStateListDrawableTransition_android_fromId 1 -int styleable AnimatedStateListDrawableTransition_android_reversible 2 -int styleable AnimatedStateListDrawableTransition_android_toId 3 -int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -int styleable StateListDrawable_android_constantSize 0 -int styleable StateListDrawable_android_dither 1 -int styleable StateListDrawable_android_enterFadeDuration 2 -int styleable StateListDrawable_android_exitFadeDuration 3 -int styleable StateListDrawable_android_variablePadding 4 -int styleable StateListDrawable_android_visible 5 -int[] styleable StateListDrawableItem { 0x1010199 } -int styleable StateListDrawableItem_android_drawable 0 diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/classes.jar b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/classes.jar deleted file mode 100644 index 2107ace..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/classes.jar and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/public.txt b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/public.txt deleted file mode 100644 index e69de29..0000000 diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res.zip b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res.zip deleted file mode 100644 index 892dc75..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res.zip and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res/drawable/abc_vector_test.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res/drawable/abc_vector_test.xml deleted file mode 100644 index d5da2cb..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res/drawable/abc_vector_test.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res/values/values.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res/values/values.xml deleted file mode 100644 index b51a8fa..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/122/jl/res/values/values.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123.stamp b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123.stamp deleted file mode 100644 index 3b6b3fa..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123.stamp +++ /dev/null @@ -1 +0,0 @@ -62174F6A8E514800 \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/AndroidManifest.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/AndroidManifest.xml deleted file mode 100644 index 2ba7e4b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/AndroidManifest.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties deleted file mode 100644 index c68e484..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties +++ /dev/null @@ -1,3 +0,0 @@ -aarFormatVersion=1.0 -aarMetadataVersion=1.0 -minCompileSdk=31 diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/R.txt b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/R.txt deleted file mode 100644 index 21ffe41..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/R.txt +++ /dev/null @@ -1,1475 +0,0 @@ -int anim abc_fade_in 0x0 -int anim abc_fade_out 0x0 -int anim abc_grow_fade_in_from_bottom 0x0 -int anim abc_popup_enter 0x0 -int anim abc_popup_exit 0x0 -int anim abc_shrink_fade_out_from_bottom 0x0 -int anim abc_slide_in_bottom 0x0 -int anim abc_slide_in_top 0x0 -int anim abc_slide_out_bottom 0x0 -int anim abc_slide_out_top 0x0 -int anim abc_tooltip_enter 0x0 -int anim abc_tooltip_exit 0x0 -int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 -int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 -int anim btn_checkbox_to_checked_icon_null_animation 0x0 -int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 -int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 -int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 -int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 -int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 -int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 -int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 -int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 -int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 -int attr actionBarDivider 0x0 -int attr actionBarItemBackground 0x0 -int attr actionBarPopupTheme 0x0 -int attr actionBarSize 0x0 -int attr actionBarSplitStyle 0x0 -int attr actionBarStyle 0x0 -int attr actionBarTabBarStyle 0x0 -int attr actionBarTabStyle 0x0 -int attr actionBarTabTextStyle 0x0 -int attr actionBarTheme 0x0 -int attr actionBarWidgetTheme 0x0 -int attr actionButtonStyle 0x0 -int attr actionDropDownStyle 0x0 -int attr actionLayout 0x0 -int attr actionMenuTextAppearance 0x0 -int attr actionMenuTextColor 0x0 -int attr actionModeBackground 0x0 -int attr actionModeCloseButtonStyle 0x0 -int attr actionModeCloseContentDescription 0x0 -int attr actionModeCloseDrawable 0x0 -int attr actionModeCopyDrawable 0x0 -int attr actionModeCutDrawable 0x0 -int attr actionModeFindDrawable 0x0 -int attr actionModePasteDrawable 0x0 -int attr actionModePopupWindowStyle 0x0 -int attr actionModeSelectAllDrawable 0x0 -int attr actionModeShareDrawable 0x0 -int attr actionModeSplitBackground 0x0 -int attr actionModeStyle 0x0 -int attr actionModeTheme 0x0 -int attr actionModeWebSearchDrawable 0x0 -int attr actionOverflowButtonStyle 0x0 -int attr actionOverflowMenuStyle 0x0 -int attr actionProviderClass 0x0 -int attr actionViewClass 0x0 -int attr activityChooserViewStyle 0x0 -int attr alertDialogButtonGroupStyle 0x0 -int attr alertDialogCenterButtons 0x0 -int attr alertDialogStyle 0x0 -int attr alertDialogTheme 0x0 -int attr allowStacking 0x0 -int attr alphabeticModifiers 0x0 -int attr arrowHeadLength 0x0 -int attr arrowShaftLength 0x0 -int attr autoCompleteTextViewStyle 0x0 -int attr autoSizeMaxTextSize 0x0 -int attr autoSizeMinTextSize 0x0 -int attr autoSizePresetSizes 0x0 -int attr autoSizeStepGranularity 0x0 -int attr autoSizeTextType 0x0 -int attr background 0x0 -int attr backgroundSplit 0x0 -int attr backgroundStacked 0x0 -int attr backgroundTint 0x0 -int attr backgroundTintMode 0x0 -int attr barLength 0x0 -int attr borderlessButtonStyle 0x0 -int attr buttonBarButtonStyle 0x0 -int attr buttonBarNegativeButtonStyle 0x0 -int attr buttonBarNeutralButtonStyle 0x0 -int attr buttonBarPositiveButtonStyle 0x0 -int attr buttonBarStyle 0x0 -int attr buttonCompat 0x0 -int attr buttonGravity 0x0 -int attr buttonIconDimen 0x0 -int attr buttonPanelSideLayout 0x0 -int attr buttonStyle 0x0 -int attr buttonStyleSmall 0x0 -int attr buttonTint 0x0 -int attr buttonTintMode 0x0 -int attr checkMarkCompat 0x0 -int attr checkMarkTint 0x0 -int attr checkMarkTintMode 0x0 -int attr checkboxStyle 0x0 -int attr checkedTextViewStyle 0x0 -int attr closeIcon 0x0 -int attr closeItemLayout 0x0 -int attr collapseContentDescription 0x0 -int attr collapseIcon 0x0 -int attr color 0x0 -int attr colorAccent 0x0 -int attr colorBackgroundFloating 0x0 -int attr colorButtonNormal 0x0 -int attr colorControlActivated 0x0 -int attr colorControlHighlight 0x0 -int attr colorControlNormal 0x0 -int attr colorError 0x0 -int attr colorPrimary 0x0 -int attr colorPrimaryDark 0x0 -int attr colorSwitchThumbNormal 0x0 -int attr commitIcon 0x0 -int attr contentDescription 0x0 -int attr contentInsetEnd 0x0 -int attr contentInsetEndWithActions 0x0 -int attr contentInsetLeft 0x0 -int attr contentInsetRight 0x0 -int attr contentInsetStart 0x0 -int attr contentInsetStartWithNavigation 0x0 -int attr controlBackground 0x0 -int attr customNavigationLayout 0x0 -int attr defaultQueryHint 0x0 -int attr dialogCornerRadius 0x0 -int attr dialogPreferredPadding 0x0 -int attr dialogTheme 0x0 -int attr displayOptions 0x0 -int attr divider 0x0 -int attr dividerHorizontal 0x0 -int attr dividerPadding 0x0 -int attr dividerVertical 0x0 -int attr drawableBottomCompat 0x0 -int attr drawableEndCompat 0x0 -int attr drawableLeftCompat 0x0 -int attr drawableRightCompat 0x0 -int attr drawableSize 0x0 -int attr drawableStartCompat 0x0 -int attr drawableTint 0x0 -int attr drawableTintMode 0x0 -int attr drawableTopCompat 0x0 -int attr drawerArrowStyle 0x0 -int attr dropDownListViewStyle 0x0 -int attr dropdownListPreferredItemHeight 0x0 -int attr editTextBackground 0x0 -int attr editTextColor 0x0 -int attr editTextStyle 0x0 -int attr elevation 0x0 -int attr emojiCompatEnabled 0x0 -int attr expandActivityOverflowButtonDrawable 0x0 -int attr firstBaselineToTopHeight 0x0 -int attr fontFamily 0x0 -int attr fontVariationSettings 0x0 -int attr gapBetweenBars 0x0 -int attr goIcon 0x0 -int attr height 0x0 -int attr hideOnContentScroll 0x0 -int attr homeAsUpIndicator 0x0 -int attr homeLayout 0x0 -int attr icon 0x0 -int attr iconTint 0x0 -int attr iconTintMode 0x0 -int attr iconifiedByDefault 0x0 -int attr imageButtonStyle 0x0 -int attr indeterminateProgressStyle 0x0 -int attr initialActivityCount 0x0 -int attr isLightTheme 0x0 -int attr itemPadding 0x0 -int attr lastBaselineToBottomHeight 0x0 -int attr layout 0x0 -int attr lineHeight 0x0 -int attr listChoiceBackgroundIndicator 0x0 -int attr listChoiceIndicatorMultipleAnimated 0x0 -int attr listChoiceIndicatorSingleAnimated 0x0 -int attr listDividerAlertDialog 0x0 -int attr listItemLayout 0x0 -int attr listLayout 0x0 -int attr listMenuViewStyle 0x0 -int attr listPopupWindowStyle 0x0 -int attr listPreferredItemHeight 0x0 -int attr listPreferredItemHeightLarge 0x0 -int attr listPreferredItemHeightSmall 0x0 -int attr listPreferredItemPaddingEnd 0x0 -int attr listPreferredItemPaddingLeft 0x0 -int attr listPreferredItemPaddingRight 0x0 -int attr listPreferredItemPaddingStart 0x0 -int attr logo 0x0 -int attr logoDescription 0x0 -int attr maxButtonHeight 0x0 -int attr measureWithLargestChild 0x0 -int attr menu 0x0 -int attr multiChoiceItemLayout 0x0 -int attr navigationContentDescription 0x0 -int attr navigationIcon 0x0 -int attr navigationMode 0x0 -int attr numericModifiers 0x0 -int attr overlapAnchor 0x0 -int attr paddingBottomNoButtons 0x0 -int attr paddingEnd 0x0 -int attr paddingStart 0x0 -int attr paddingTopNoTitle 0x0 -int attr panelBackground 0x0 -int attr panelMenuListTheme 0x0 -int attr panelMenuListWidth 0x0 -int attr popupMenuStyle 0x0 -int attr popupTheme 0x0 -int attr popupWindowStyle 0x0 -int attr preserveIconSpacing 0x0 -int attr progressBarPadding 0x0 -int attr progressBarStyle 0x0 -int attr queryBackground 0x0 -int attr queryHint 0x0 -int attr radioButtonStyle 0x0 -int attr ratingBarStyle 0x0 -int attr ratingBarStyleIndicator 0x0 -int attr ratingBarStyleSmall 0x0 -int attr searchHintIcon 0x0 -int attr searchIcon 0x0 -int attr searchViewStyle 0x0 -int attr seekBarStyle 0x0 -int attr selectableItemBackground 0x0 -int attr selectableItemBackgroundBorderless 0x0 -int attr showAsAction 0x0 -int attr showDividers 0x0 -int attr showText 0x0 -int attr showTitle 0x0 -int attr singleChoiceItemLayout 0x0 -int attr spinBars 0x0 -int attr spinnerDropDownItemStyle 0x0 -int attr spinnerStyle 0x0 -int attr splitTrack 0x0 -int attr srcCompat 0x0 -int attr state_above_anchor 0x0 -int attr subMenuArrow 0x0 -int attr submitBackground 0x0 -int attr subtitle 0x0 -int attr subtitleTextAppearance 0x0 -int attr subtitleTextColor 0x0 -int attr subtitleTextStyle 0x0 -int attr suggestionRowLayout 0x0 -int attr switchMinWidth 0x0 -int attr switchPadding 0x0 -int attr switchStyle 0x0 -int attr switchTextAppearance 0x0 -int attr textAllCaps 0x0 -int attr textAppearanceLargePopupMenu 0x0 -int attr textAppearanceListItem 0x0 -int attr textAppearanceListItemSecondary 0x0 -int attr textAppearanceListItemSmall 0x0 -int attr textAppearancePopupMenuHeader 0x0 -int attr textAppearanceSearchResultSubtitle 0x0 -int attr textAppearanceSearchResultTitle 0x0 -int attr textAppearanceSmallPopupMenu 0x0 -int attr textColorAlertDialogListItem 0x0 -int attr textColorSearchUrl 0x0 -int attr textLocale 0x0 -int attr theme 0x0 -int attr thickness 0x0 -int attr thumbTextPadding 0x0 -int attr thumbTint 0x0 -int attr thumbTintMode 0x0 -int attr tickMark 0x0 -int attr tickMarkTint 0x0 -int attr tickMarkTintMode 0x0 -int attr tint 0x0 -int attr tintMode 0x0 -int attr title 0x0 -int attr titleMargin 0x0 -int attr titleMarginBottom 0x0 -int attr titleMarginEnd 0x0 -int attr titleMarginStart 0x0 -int attr titleMarginTop 0x0 -int attr titleMargins 0x0 -int attr titleTextAppearance 0x0 -int attr titleTextColor 0x0 -int attr titleTextStyle 0x0 -int attr toolbarNavigationButtonStyle 0x0 -int attr toolbarStyle 0x0 -int attr tooltipForegroundColor 0x0 -int attr tooltipFrameBackground 0x0 -int attr tooltipText 0x0 -int attr track 0x0 -int attr trackTint 0x0 -int attr trackTintMode 0x0 -int attr viewInflaterClass 0x0 -int attr voiceIcon 0x0 -int attr windowActionBar 0x0 -int attr windowActionBarOverlay 0x0 -int attr windowActionModeOverlay 0x0 -int attr windowFixedHeightMajor 0x0 -int attr windowFixedHeightMinor 0x0 -int attr windowFixedWidthMajor 0x0 -int attr windowFixedWidthMinor 0x0 -int attr windowMinWidthMajor 0x0 -int attr windowMinWidthMinor 0x0 -int attr windowNoTitle 0x0 -int bool abc_action_bar_embed_tabs 0x0 -int bool abc_config_actionMenuItemAllCaps 0x0 -int color abc_background_cache_hint_selector_material_dark 0x0 -int color abc_background_cache_hint_selector_material_light 0x0 -int color abc_btn_colored_borderless_text_material 0x0 -int color abc_btn_colored_text_material 0x0 -int color abc_color_highlight_material 0x0 -int color abc_decor_view_status_guard 0x0 -int color abc_decor_view_status_guard_light 0x0 -int color abc_hint_foreground_material_dark 0x0 -int color abc_hint_foreground_material_light 0x0 -int color abc_primary_text_disable_only_material_dark 0x0 -int color abc_primary_text_disable_only_material_light 0x0 -int color abc_primary_text_material_dark 0x0 -int color abc_primary_text_material_light 0x0 -int color abc_search_url_text 0x0 -int color abc_search_url_text_normal 0x0 -int color abc_search_url_text_pressed 0x0 -int color abc_search_url_text_selected 0x0 -int color abc_secondary_text_material_dark 0x0 -int color abc_secondary_text_material_light 0x0 -int color abc_tint_btn_checkable 0x0 -int color abc_tint_default 0x0 -int color abc_tint_edittext 0x0 -int color abc_tint_seek_thumb 0x0 -int color abc_tint_spinner 0x0 -int color abc_tint_switch_track 0x0 -int color accent_material_dark 0x0 -int color accent_material_light 0x0 -int color background_floating_material_dark 0x0 -int color background_floating_material_light 0x0 -int color background_material_dark 0x0 -int color background_material_light 0x0 -int color bright_foreground_disabled_material_dark 0x0 -int color bright_foreground_disabled_material_light 0x0 -int color bright_foreground_inverse_material_dark 0x0 -int color bright_foreground_inverse_material_light 0x0 -int color bright_foreground_material_dark 0x0 -int color bright_foreground_material_light 0x0 -int color button_material_dark 0x0 -int color button_material_light 0x0 -int color dim_foreground_disabled_material_dark 0x0 -int color dim_foreground_disabled_material_light 0x0 -int color dim_foreground_material_dark 0x0 -int color dim_foreground_material_light 0x0 -int color error_color_material_dark 0x0 -int color error_color_material_light 0x0 -int color foreground_material_dark 0x0 -int color foreground_material_light 0x0 -int color highlighted_text_material_dark 0x0 -int color highlighted_text_material_light 0x0 -int color material_blue_grey_800 0x0 -int color material_blue_grey_900 0x0 -int color material_blue_grey_950 0x0 -int color material_deep_teal_200 0x0 -int color material_deep_teal_500 0x0 -int color material_grey_100 0x0 -int color material_grey_300 0x0 -int color material_grey_50 0x0 -int color material_grey_600 0x0 -int color material_grey_800 0x0 -int color material_grey_850 0x0 -int color material_grey_900 0x0 -int color primary_dark_material_dark 0x0 -int color primary_dark_material_light 0x0 -int color primary_material_dark 0x0 -int color primary_material_light 0x0 -int color primary_text_default_material_dark 0x0 -int color primary_text_default_material_light 0x0 -int color primary_text_disabled_material_dark 0x0 -int color primary_text_disabled_material_light 0x0 -int color ripple_material_dark 0x0 -int color ripple_material_light 0x0 -int color secondary_text_default_material_dark 0x0 -int color secondary_text_default_material_light 0x0 -int color secondary_text_disabled_material_dark 0x0 -int color secondary_text_disabled_material_light 0x0 -int color switch_thumb_disabled_material_dark 0x0 -int color switch_thumb_disabled_material_light 0x0 -int color switch_thumb_material_dark 0x0 -int color switch_thumb_material_light 0x0 -int color switch_thumb_normal_material_dark 0x0 -int color switch_thumb_normal_material_light 0x0 -int color tooltip_background_dark 0x0 -int color tooltip_background_light 0x0 -int dimen abc_action_bar_content_inset_material 0x0 -int dimen abc_action_bar_content_inset_with_nav 0x0 -int dimen abc_action_bar_default_height_material 0x0 -int dimen abc_action_bar_default_padding_end_material 0x0 -int dimen abc_action_bar_default_padding_start_material 0x0 -int dimen abc_action_bar_elevation_material 0x0 -int dimen abc_action_bar_icon_vertical_padding_material 0x0 -int dimen abc_action_bar_overflow_padding_end_material 0x0 -int dimen abc_action_bar_overflow_padding_start_material 0x0 -int dimen abc_action_bar_stacked_max_height 0x0 -int dimen abc_action_bar_stacked_tab_max_width 0x0 -int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 -int dimen abc_action_bar_subtitle_top_margin_material 0x0 -int dimen abc_action_button_min_height_material 0x0 -int dimen abc_action_button_min_width_material 0x0 -int dimen abc_action_button_min_width_overflow_material 0x0 -int dimen abc_alert_dialog_button_bar_height 0x0 -int dimen abc_alert_dialog_button_dimen 0x0 -int dimen abc_button_inset_horizontal_material 0x0 -int dimen abc_button_inset_vertical_material 0x0 -int dimen abc_button_padding_horizontal_material 0x0 -int dimen abc_button_padding_vertical_material 0x0 -int dimen abc_cascading_menus_min_smallest_width 0x0 -int dimen abc_config_prefDialogWidth 0x0 -int dimen abc_control_corner_material 0x0 -int dimen abc_control_inset_material 0x0 -int dimen abc_control_padding_material 0x0 -int dimen abc_dialog_corner_radius_material 0x0 -int dimen abc_dialog_fixed_height_major 0x0 -int dimen abc_dialog_fixed_height_minor 0x0 -int dimen abc_dialog_fixed_width_major 0x0 -int dimen abc_dialog_fixed_width_minor 0x0 -int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 -int dimen abc_dialog_list_padding_top_no_title 0x0 -int dimen abc_dialog_min_width_major 0x0 -int dimen abc_dialog_min_width_minor 0x0 -int dimen abc_dialog_padding_material 0x0 -int dimen abc_dialog_padding_top_material 0x0 -int dimen abc_dialog_title_divider_material 0x0 -int dimen abc_disabled_alpha_material_dark 0x0 -int dimen abc_disabled_alpha_material_light 0x0 -int dimen abc_dropdownitem_icon_width 0x0 -int dimen abc_dropdownitem_text_padding_left 0x0 -int dimen abc_dropdownitem_text_padding_right 0x0 -int dimen abc_edit_text_inset_bottom_material 0x0 -int dimen abc_edit_text_inset_horizontal_material 0x0 -int dimen abc_edit_text_inset_top_material 0x0 -int dimen abc_floating_window_z 0x0 -int dimen abc_list_item_height_large_material 0x0 -int dimen abc_list_item_height_material 0x0 -int dimen abc_list_item_height_small_material 0x0 -int dimen abc_list_item_padding_horizontal_material 0x0 -int dimen abc_panel_menu_list_width 0x0 -int dimen abc_progress_bar_height_material 0x0 -int dimen abc_search_view_preferred_height 0x0 -int dimen abc_search_view_preferred_width 0x0 -int dimen abc_seekbar_track_background_height_material 0x0 -int dimen abc_seekbar_track_progress_height_material 0x0 -int dimen abc_select_dialog_padding_start_material 0x0 -int dimen abc_star_big 0x0 -int dimen abc_star_medium 0x0 -int dimen abc_star_small 0x0 -int dimen abc_switch_padding 0x0 -int dimen abc_text_size_body_1_material 0x0 -int dimen abc_text_size_body_2_material 0x0 -int dimen abc_text_size_button_material 0x0 -int dimen abc_text_size_caption_material 0x0 -int dimen abc_text_size_display_1_material 0x0 -int dimen abc_text_size_display_2_material 0x0 -int dimen abc_text_size_display_3_material 0x0 -int dimen abc_text_size_display_4_material 0x0 -int dimen abc_text_size_headline_material 0x0 -int dimen abc_text_size_large_material 0x0 -int dimen abc_text_size_medium_material 0x0 -int dimen abc_text_size_menu_header_material 0x0 -int dimen abc_text_size_menu_material 0x0 -int dimen abc_text_size_small_material 0x0 -int dimen abc_text_size_subhead_material 0x0 -int dimen abc_text_size_subtitle_material_toolbar 0x0 -int dimen abc_text_size_title_material 0x0 -int dimen abc_text_size_title_material_toolbar 0x0 -int dimen disabled_alpha_material_dark 0x0 -int dimen disabled_alpha_material_light 0x0 -int dimen highlight_alpha_material_colored 0x0 -int dimen highlight_alpha_material_dark 0x0 -int dimen highlight_alpha_material_light 0x0 -int dimen hint_alpha_material_dark 0x0 -int dimen hint_alpha_material_light 0x0 -int dimen hint_pressed_alpha_material_dark 0x0 -int dimen hint_pressed_alpha_material_light 0x0 -int dimen tooltip_corner_radius 0x0 -int dimen tooltip_horizontal_padding 0x0 -int dimen tooltip_margin 0x0 -int dimen tooltip_precise_anchor_extra_offset 0x0 -int dimen tooltip_precise_anchor_threshold 0x0 -int dimen tooltip_vertical_padding 0x0 -int dimen tooltip_y_offset_non_touch 0x0 -int dimen tooltip_y_offset_touch 0x0 -int drawable abc_ab_share_pack_mtrl_alpha 0x0 -int drawable abc_action_bar_item_background_material 0x0 -int drawable abc_btn_borderless_material 0x0 -int drawable abc_btn_check_material 0x0 -int drawable abc_btn_check_material_anim 0x0 -int drawable abc_btn_check_to_on_mtrl_000 0x0 -int drawable abc_btn_check_to_on_mtrl_015 0x0 -int drawable abc_btn_colored_material 0x0 -int drawable abc_btn_default_mtrl_shape 0x0 -int drawable abc_btn_radio_material 0x0 -int drawable abc_btn_radio_material_anim 0x0 -int drawable abc_btn_radio_to_on_mtrl_000 0x0 -int drawable abc_btn_radio_to_on_mtrl_015 0x0 -int drawable abc_btn_switch_to_on_mtrl_00001 0x0 -int drawable abc_btn_switch_to_on_mtrl_00012 0x0 -int drawable abc_cab_background_internal_bg 0x0 -int drawable abc_cab_background_top_material 0x0 -int drawable abc_cab_background_top_mtrl_alpha 0x0 -int drawable abc_control_background_material 0x0 -int drawable abc_dialog_material_background 0x0 -int drawable abc_edit_text_material 0x0 -int drawable abc_ic_ab_back_material 0x0 -int drawable abc_ic_arrow_drop_right_black_24dp 0x0 -int drawable abc_ic_clear_material 0x0 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 -int drawable abc_ic_go_search_api_material 0x0 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 -int drawable abc_ic_menu_cut_mtrl_alpha 0x0 -int drawable abc_ic_menu_overflow_material 0x0 -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 -int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 -int drawable abc_ic_menu_share_mtrl_alpha 0x0 -int drawable abc_ic_search_api_material 0x0 -int drawable abc_ic_voice_search_api_material 0x0 -int drawable abc_item_background_holo_dark 0x0 -int drawable abc_item_background_holo_light 0x0 -int drawable abc_list_divider_material 0x0 -int drawable abc_list_divider_mtrl_alpha 0x0 -int drawable abc_list_focused_holo 0x0 -int drawable abc_list_longpressed_holo 0x0 -int drawable abc_list_pressed_holo_dark 0x0 -int drawable abc_list_pressed_holo_light 0x0 -int drawable abc_list_selector_background_transition_holo_dark 0x0 -int drawable abc_list_selector_background_transition_holo_light 0x0 -int drawable abc_list_selector_disabled_holo_dark 0x0 -int drawable abc_list_selector_disabled_holo_light 0x0 -int drawable abc_list_selector_holo_dark 0x0 -int drawable abc_list_selector_holo_light 0x0 -int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 -int drawable abc_popup_background_mtrl_mult 0x0 -int drawable abc_ratingbar_indicator_material 0x0 -int drawable abc_ratingbar_material 0x0 -int drawable abc_ratingbar_small_material 0x0 -int drawable abc_scrubber_control_off_mtrl_alpha 0x0 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 -int drawable abc_scrubber_primary_mtrl_alpha 0x0 -int drawable abc_scrubber_track_mtrl_alpha 0x0 -int drawable abc_seekbar_thumb_material 0x0 -int drawable abc_seekbar_tick_mark_material 0x0 -int drawable abc_seekbar_track_material 0x0 -int drawable abc_spinner_mtrl_am_alpha 0x0 -int drawable abc_spinner_textfield_background_material 0x0 -int drawable abc_star_black_48dp 0x0 -int drawable abc_star_half_black_48dp 0x0 -int drawable abc_switch_thumb_material 0x0 -int drawable abc_switch_track_mtrl_alpha 0x0 -int drawable abc_tab_indicator_material 0x0 -int drawable abc_tab_indicator_mtrl_alpha 0x0 -int drawable abc_text_cursor_material 0x0 -int drawable abc_text_select_handle_left_mtrl 0x0 -int drawable abc_text_select_handle_middle_mtrl 0x0 -int drawable abc_text_select_handle_right_mtrl 0x0 -int drawable abc_textfield_activated_mtrl_alpha 0x0 -int drawable abc_textfield_default_mtrl_alpha 0x0 -int drawable abc_textfield_search_activated_mtrl_alpha 0x0 -int drawable abc_textfield_search_default_mtrl_alpha 0x0 -int drawable abc_textfield_search_material 0x0 -int drawable btn_checkbox_checked_mtrl 0x0 -int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 -int drawable btn_checkbox_unchecked_mtrl 0x0 -int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 -int drawable btn_radio_off_mtrl 0x0 -int drawable btn_radio_off_to_on_mtrl_animation 0x0 -int drawable btn_radio_on_mtrl 0x0 -int drawable btn_radio_on_to_off_mtrl_animation 0x0 -int drawable test_level_drawable 0x0 -int drawable tooltip_frame_dark 0x0 -int drawable tooltip_frame_light 0x0 -int id action_bar 0x0 -int id action_bar_activity_content 0x0 -int id action_bar_container 0x0 -int id action_bar_root 0x0 -int id action_bar_spinner 0x0 -int id action_bar_subtitle 0x0 -int id action_bar_title 0x0 -int id action_context_bar 0x0 -int id action_menu_divider 0x0 -int id action_menu_presenter 0x0 -int id action_mode_bar 0x0 -int id action_mode_bar_stub 0x0 -int id action_mode_close_button 0x0 -int id activity_chooser_view_content 0x0 -int id add 0x0 -int id alertTitle 0x0 -int id buttonPanel 0x0 -int id checkbox 0x0 -int id checked 0x0 -int id content 0x0 -int id contentPanel 0x0 -int id custom 0x0 -int id customPanel 0x0 -int id decor_content_parent 0x0 -int id default_activity_button 0x0 -int id edit_query 0x0 -int id expand_activities_button 0x0 -int id expanded_menu 0x0 -int id group_divider 0x0 -int id home 0x0 -int id icon 0x0 -int id image 0x0 -int id listMode 0x0 -int id list_item 0x0 -int id message 0x0 -int id multiply 0x0 -int id none 0x0 -int id normal 0x0 -int id off 0x0 -int id on 0x0 -int id parentPanel 0x0 -int id progress_circular 0x0 -int id progress_horizontal 0x0 -int id radio 0x0 -int id screen 0x0 -int id scrollIndicatorDown 0x0 -int id scrollIndicatorUp 0x0 -int id scrollView 0x0 -int id search_badge 0x0 -int id search_bar 0x0 -int id search_button 0x0 -int id search_close_btn 0x0 -int id search_edit_frame 0x0 -int id search_go_btn 0x0 -int id search_mag_icon 0x0 -int id search_plate 0x0 -int id search_src_text 0x0 -int id search_voice_btn 0x0 -int id select_dialog_listview 0x0 -int id shortcut 0x0 -int id spacer 0x0 -int id split_action_bar 0x0 -int id src_atop 0x0 -int id src_in 0x0 -int id src_over 0x0 -int id submenuarrow 0x0 -int id submit_area 0x0 -int id tabMode 0x0 -int id textSpacerNoButtons 0x0 -int id textSpacerNoTitle 0x0 -int id title 0x0 -int id titleDividerNoCustom 0x0 -int id title_template 0x0 -int id topPanel 0x0 -int id unchecked 0x0 -int id uniform 0x0 -int id up 0x0 -int id wrap_content 0x0 -int integer abc_config_activityDefaultDur 0x0 -int integer abc_config_activityShortDur 0x0 -int integer cancel_button_image_alpha 0x0 -int integer config_tooltipAnimTime 0x0 -int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 -int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 -int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 -int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 -int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 -int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 -int interpolator fast_out_slow_in 0x0 -int layout abc_action_bar_title_item 0x0 -int layout abc_action_bar_up_container 0x0 -int layout abc_action_menu_item_layout 0x0 -int layout abc_action_menu_layout 0x0 -int layout abc_action_mode_bar 0x0 -int layout abc_action_mode_close_item_material 0x0 -int layout abc_activity_chooser_view 0x0 -int layout abc_activity_chooser_view_list_item 0x0 -int layout abc_alert_dialog_button_bar_material 0x0 -int layout abc_alert_dialog_material 0x0 -int layout abc_alert_dialog_title_material 0x0 -int layout abc_cascading_menu_item_layout 0x0 -int layout abc_dialog_title_material 0x0 -int layout abc_expanded_menu_layout 0x0 -int layout abc_list_menu_item_checkbox 0x0 -int layout abc_list_menu_item_icon 0x0 -int layout abc_list_menu_item_layout 0x0 -int layout abc_list_menu_item_radio 0x0 -int layout abc_popup_menu_header_item_layout 0x0 -int layout abc_popup_menu_item_layout 0x0 -int layout abc_screen_content_include 0x0 -int layout abc_screen_simple 0x0 -int layout abc_screen_simple_overlay_action_mode 0x0 -int layout abc_screen_toolbar 0x0 -int layout abc_search_dropdown_item_icons_2line 0x0 -int layout abc_search_view 0x0 -int layout abc_select_dialog_material 0x0 -int layout abc_tooltip 0x0 -int layout select_dialog_item_material 0x0 -int layout select_dialog_multichoice_material 0x0 -int layout select_dialog_singlechoice_material 0x0 -int layout support_simple_spinner_dropdown_item 0x0 -int string abc_action_bar_home_description 0x0 -int string abc_action_bar_up_description 0x0 -int string abc_action_menu_overflow_description 0x0 -int string abc_action_mode_done 0x0 -int string abc_activity_chooser_view_see_all 0x0 -int string abc_activitychooserview_choose_application 0x0 -int string abc_capital_off 0x0 -int string abc_capital_on 0x0 -int string abc_menu_alt_shortcut_label 0x0 -int string abc_menu_ctrl_shortcut_label 0x0 -int string abc_menu_delete_shortcut_label 0x0 -int string abc_menu_enter_shortcut_label 0x0 -int string abc_menu_function_shortcut_label 0x0 -int string abc_menu_meta_shortcut_label 0x0 -int string abc_menu_shift_shortcut_label 0x0 -int string abc_menu_space_shortcut_label 0x0 -int string abc_menu_sym_shortcut_label 0x0 -int string abc_prepend_shortcut_label 0x0 -int string abc_search_hint 0x0 -int string abc_searchview_description_clear 0x0 -int string abc_searchview_description_query 0x0 -int string abc_searchview_description_search 0x0 -int string abc_searchview_description_submit 0x0 -int string abc_searchview_description_voice 0x0 -int string abc_shareactionprovider_share_with 0x0 -int string abc_shareactionprovider_share_with_application 0x0 -int string abc_toolbar_collapse_description 0x0 -int string search_menu_title 0x0 -int style AlertDialog_AppCompat 0x0 -int style AlertDialog_AppCompat_Light 0x0 -int style Animation_AppCompat_Dialog 0x0 -int style Animation_AppCompat_DropDownUp 0x0 -int style Animation_AppCompat_Tooltip 0x0 -int style Base_AlertDialog_AppCompat 0x0 -int style Base_AlertDialog_AppCompat_Light 0x0 -int style Base_Animation_AppCompat_Dialog 0x0 -int style Base_Animation_AppCompat_DropDownUp 0x0 -int style Base_Animation_AppCompat_Tooltip 0x0 -int style Base_DialogWindowTitleBackground_AppCompat 0x0 -int style Base_DialogWindowTitle_AppCompat 0x0 -int style Base_TextAppearance_AppCompat 0x0 -int style Base_TextAppearance_AppCompat_Body1 0x0 -int style Base_TextAppearance_AppCompat_Body2 0x0 -int style Base_TextAppearance_AppCompat_Button 0x0 -int style Base_TextAppearance_AppCompat_Caption 0x0 -int style Base_TextAppearance_AppCompat_Display1 0x0 -int style Base_TextAppearance_AppCompat_Display2 0x0 -int style Base_TextAppearance_AppCompat_Display3 0x0 -int style Base_TextAppearance_AppCompat_Display4 0x0 -int style Base_TextAppearance_AppCompat_Headline 0x0 -int style Base_TextAppearance_AppCompat_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Large 0x0 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -int style Base_TextAppearance_AppCompat_Medium 0x0 -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Menu 0x0 -int style Base_TextAppearance_AppCompat_SearchResult 0x0 -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 -int style Base_TextAppearance_AppCompat_Small 0x0 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Subhead 0x0 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Title 0x0 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Tooltip 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -int style Base_ThemeOverlay_AppCompat 0x0 -int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 -int style Base_ThemeOverlay_AppCompat_Dark 0x0 -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -int style Base_ThemeOverlay_AppCompat_Dialog 0x0 -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 -int style Base_ThemeOverlay_AppCompat_Light 0x0 -int style Base_Theme_AppCompat 0x0 -int style Base_Theme_AppCompat_CompactMenu 0x0 -int style Base_Theme_AppCompat_Dialog 0x0 -int style Base_Theme_AppCompat_DialogWhenLarge 0x0 -int style Base_Theme_AppCompat_Dialog_Alert 0x0 -int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 -int style Base_Theme_AppCompat_Light 0x0 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 -int style Base_Theme_AppCompat_Light_Dialog 0x0 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 -int style Base_V21_Theme_AppCompat 0x0 -int style Base_V21_Theme_AppCompat_Dialog 0x0 -int style Base_V21_Theme_AppCompat_Light 0x0 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 -int style Base_V22_Theme_AppCompat 0x0 -int style Base_V22_Theme_AppCompat_Light 0x0 -int style Base_V23_Theme_AppCompat 0x0 -int style Base_V23_Theme_AppCompat_Light 0x0 -int style Base_V26_Theme_AppCompat 0x0 -int style Base_V26_Theme_AppCompat_Light 0x0 -int style Base_V26_Widget_AppCompat_Toolbar 0x0 -int style Base_V28_Theme_AppCompat 0x0 -int style Base_V28_Theme_AppCompat_Light 0x0 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 -int style Base_V7_Theme_AppCompat 0x0 -int style Base_V7_Theme_AppCompat_Dialog 0x0 -int style Base_V7_Theme_AppCompat_Light 0x0 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 -int style Base_V7_Widget_AppCompat_EditText 0x0 -int style Base_V7_Widget_AppCompat_Toolbar 0x0 -int style Base_Widget_AppCompat_ActionBar 0x0 -int style Base_Widget_AppCompat_ActionBar_Solid 0x0 -int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 -int style Base_Widget_AppCompat_ActionBar_TabText 0x0 -int style Base_Widget_AppCompat_ActionBar_TabView 0x0 -int style Base_Widget_AppCompat_ActionButton 0x0 -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 -int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 -int style Base_Widget_AppCompat_ActionMode 0x0 -int style Base_Widget_AppCompat_ActivityChooserView 0x0 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 -int style Base_Widget_AppCompat_Button 0x0 -int style Base_Widget_AppCompat_ButtonBar 0x0 -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 -int style Base_Widget_AppCompat_Button_Borderless 0x0 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -int style Base_Widget_AppCompat_Button_Colored 0x0 -int style Base_Widget_AppCompat_Button_Small 0x0 -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 -int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 -int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 -int style Base_Widget_AppCompat_EditText 0x0 -int style Base_Widget_AppCompat_ImageButton 0x0 -int style Base_Widget_AppCompat_Light_ActionBar 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 -int style Base_Widget_AppCompat_Light_PopupMenu 0x0 -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -int style Base_Widget_AppCompat_ListMenuView 0x0 -int style Base_Widget_AppCompat_ListPopupWindow 0x0 -int style Base_Widget_AppCompat_ListView 0x0 -int style Base_Widget_AppCompat_ListView_DropDown 0x0 -int style Base_Widget_AppCompat_ListView_Menu 0x0 -int style Base_Widget_AppCompat_PopupMenu 0x0 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 -int style Base_Widget_AppCompat_PopupWindow 0x0 -int style Base_Widget_AppCompat_ProgressBar 0x0 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 -int style Base_Widget_AppCompat_RatingBar 0x0 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 -int style Base_Widget_AppCompat_RatingBar_Small 0x0 -int style Base_Widget_AppCompat_SearchView 0x0 -int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 -int style Base_Widget_AppCompat_SeekBar 0x0 -int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 -int style Base_Widget_AppCompat_Spinner 0x0 -int style Base_Widget_AppCompat_Spinner_Underlined 0x0 -int style Base_Widget_AppCompat_TextView 0x0 -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 -int style Base_Widget_AppCompat_Toolbar 0x0 -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 -int style Platform_AppCompat 0x0 -int style Platform_AppCompat_Light 0x0 -int style Platform_ThemeOverlay_AppCompat 0x0 -int style Platform_ThemeOverlay_AppCompat_Dark 0x0 -int style Platform_ThemeOverlay_AppCompat_Light 0x0 -int style Platform_V21_AppCompat 0x0 -int style Platform_V21_AppCompat_Light 0x0 -int style Platform_V25_AppCompat 0x0 -int style Platform_V25_AppCompat_Light 0x0 -int style Platform_Widget_AppCompat_Spinner 0x0 -int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 -int style TextAppearance_AppCompat 0x0 -int style TextAppearance_AppCompat_Body1 0x0 -int style TextAppearance_AppCompat_Body2 0x0 -int style TextAppearance_AppCompat_Button 0x0 -int style TextAppearance_AppCompat_Caption 0x0 -int style TextAppearance_AppCompat_Display1 0x0 -int style TextAppearance_AppCompat_Display2 0x0 -int style TextAppearance_AppCompat_Display3 0x0 -int style TextAppearance_AppCompat_Display4 0x0 -int style TextAppearance_AppCompat_Headline 0x0 -int style TextAppearance_AppCompat_Inverse 0x0 -int style TextAppearance_AppCompat_Large 0x0 -int style TextAppearance_AppCompat_Large_Inverse 0x0 -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -int style TextAppearance_AppCompat_Medium 0x0 -int style TextAppearance_AppCompat_Medium_Inverse 0x0 -int style TextAppearance_AppCompat_Menu 0x0 -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -int style TextAppearance_AppCompat_SearchResult_Title 0x0 -int style TextAppearance_AppCompat_Small 0x0 -int style TextAppearance_AppCompat_Small_Inverse 0x0 -int style TextAppearance_AppCompat_Subhead 0x0 -int style TextAppearance_AppCompat_Subhead_Inverse 0x0 -int style TextAppearance_AppCompat_Title 0x0 -int style TextAppearance_AppCompat_Title_Inverse 0x0 -int style TextAppearance_AppCompat_Tooltip 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_Button 0x0 -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -int style TextAppearance_AppCompat_Widget_Switch 0x0 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -int style ThemeOverlay_AppCompat 0x0 -int style ThemeOverlay_AppCompat_ActionBar 0x0 -int style ThemeOverlay_AppCompat_Dark 0x0 -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -int style ThemeOverlay_AppCompat_DayNight 0x0 -int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 -int style ThemeOverlay_AppCompat_Dialog 0x0 -int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 -int style ThemeOverlay_AppCompat_Light 0x0 -int style Theme_AppCompat 0x0 -int style Theme_AppCompat_CompactMenu 0x0 -int style Theme_AppCompat_DayNight 0x0 -int style Theme_AppCompat_DayNight_DarkActionBar 0x0 -int style Theme_AppCompat_DayNight_Dialog 0x0 -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 -int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 -int style Theme_AppCompat_DayNight_NoActionBar 0x0 -int style Theme_AppCompat_Dialog 0x0 -int style Theme_AppCompat_DialogWhenLarge 0x0 -int style Theme_AppCompat_Dialog_Alert 0x0 -int style Theme_AppCompat_Dialog_MinWidth 0x0 -int style Theme_AppCompat_Empty 0x0 -int style Theme_AppCompat_Light 0x0 -int style Theme_AppCompat_Light_DarkActionBar 0x0 -int style Theme_AppCompat_Light_Dialog 0x0 -int style Theme_AppCompat_Light_DialogWhenLarge 0x0 -int style Theme_AppCompat_Light_Dialog_Alert 0x0 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 -int style Theme_AppCompat_Light_NoActionBar 0x0 -int style Theme_AppCompat_NoActionBar 0x0 -int style Widget_AppCompat_ActionBar 0x0 -int style Widget_AppCompat_ActionBar_Solid 0x0 -int style Widget_AppCompat_ActionBar_TabBar 0x0 -int style Widget_AppCompat_ActionBar_TabText 0x0 -int style Widget_AppCompat_ActionBar_TabView 0x0 -int style Widget_AppCompat_ActionButton 0x0 -int style Widget_AppCompat_ActionButton_CloseMode 0x0 -int style Widget_AppCompat_ActionButton_Overflow 0x0 -int style Widget_AppCompat_ActionMode 0x0 -int style Widget_AppCompat_ActivityChooserView 0x0 -int style Widget_AppCompat_AutoCompleteTextView 0x0 -int style Widget_AppCompat_Button 0x0 -int style Widget_AppCompat_ButtonBar 0x0 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 -int style Widget_AppCompat_Button_Borderless 0x0 -int style Widget_AppCompat_Button_Borderless_Colored 0x0 -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -int style Widget_AppCompat_Button_Colored 0x0 -int style Widget_AppCompat_Button_Small 0x0 -int style Widget_AppCompat_CompoundButton_CheckBox 0x0 -int style Widget_AppCompat_CompoundButton_RadioButton 0x0 -int style Widget_AppCompat_CompoundButton_Switch 0x0 -int style Widget_AppCompat_DrawerArrowToggle 0x0 -int style Widget_AppCompat_DropDownItem_Spinner 0x0 -int style Widget_AppCompat_EditText 0x0 -int style Widget_AppCompat_ImageButton 0x0 -int style Widget_AppCompat_Light_ActionBar 0x0 -int style Widget_AppCompat_Light_ActionBar_Solid 0x0 -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 -int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 -int style Widget_AppCompat_Light_ActionBar_TabText 0x0 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -int style Widget_AppCompat_Light_ActionBar_TabView 0x0 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 -int style Widget_AppCompat_Light_ActionButton 0x0 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 -int style Widget_AppCompat_Light_ActivityChooserView 0x0 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 -int style Widget_AppCompat_Light_ListPopupWindow 0x0 -int style Widget_AppCompat_Light_ListView_DropDown 0x0 -int style Widget_AppCompat_Light_PopupMenu 0x0 -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -int style Widget_AppCompat_Light_SearchView 0x0 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 -int style Widget_AppCompat_ListMenuView 0x0 -int style Widget_AppCompat_ListPopupWindow 0x0 -int style Widget_AppCompat_ListView 0x0 -int style Widget_AppCompat_ListView_DropDown 0x0 -int style Widget_AppCompat_ListView_Menu 0x0 -int style Widget_AppCompat_PopupMenu 0x0 -int style Widget_AppCompat_PopupMenu_Overflow 0x0 -int style Widget_AppCompat_PopupWindow 0x0 -int style Widget_AppCompat_ProgressBar 0x0 -int style Widget_AppCompat_ProgressBar_Horizontal 0x0 -int style Widget_AppCompat_RatingBar 0x0 -int style Widget_AppCompat_RatingBar_Indicator 0x0 -int style Widget_AppCompat_RatingBar_Small 0x0 -int style Widget_AppCompat_SearchView 0x0 -int style Widget_AppCompat_SearchView_ActionBar 0x0 -int style Widget_AppCompat_SeekBar 0x0 -int style Widget_AppCompat_SeekBar_Discrete 0x0 -int style Widget_AppCompat_Spinner 0x0 -int style Widget_AppCompat_Spinner_DropDown 0x0 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 -int style Widget_AppCompat_Spinner_Underlined 0x0 -int style Widget_AppCompat_TextView 0x0 -int style Widget_AppCompat_TextView_SpinnerItem 0x0 -int style Widget_AppCompat_Toolbar 0x0 -int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -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 { 0x10100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -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 { 0x0, 0x0 } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -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 AppCompatEmojiHelper { } -int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } -int styleable AppCompatTextHelper_android_drawableBottom 0 -int styleable AppCompatTextHelper_android_drawableEnd 1 -int styleable AppCompatTextHelper_android_drawableLeft 2 -int styleable AppCompatTextHelper_android_drawableRight 3 -int styleable AppCompatTextHelper_android_drawableStart 4 -int styleable AppCompatTextHelper_android_drawableTop 5 -int styleable AppCompatTextHelper_android_textAppearance 6 -int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -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_drawableBottomCompat 6 -int styleable AppCompatTextView_drawableEndCompat 7 -int styleable AppCompatTextView_drawableLeftCompat 8 -int styleable AppCompatTextView_drawableRightCompat 9 -int styleable AppCompatTextView_drawableStartCompat 10 -int styleable AppCompatTextView_drawableTint 11 -int styleable AppCompatTextView_drawableTintMode 12 -int styleable AppCompatTextView_drawableTopCompat 13 -int styleable AppCompatTextView_emojiCompatEnabled 14 -int styleable AppCompatTextView_firstBaselineToTopHeight 15 -int styleable AppCompatTextView_fontFamily 16 -int styleable AppCompatTextView_fontVariationSettings 17 -int styleable AppCompatTextView_lastBaselineToBottomHeight 18 -int styleable AppCompatTextView_lineHeight 19 -int styleable AppCompatTextView_textAllCaps 20 -int styleable AppCompatTextView_textLocale 21 -int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable AppCompatTheme_actionBarDivider 0 -int styleable AppCompatTheme_actionBarItemBackground 1 -int styleable AppCompatTheme_actionBarPopupTheme 2 -int styleable AppCompatTheme_actionBarSize 3 -int styleable AppCompatTheme_actionBarSplitStyle 4 -int styleable AppCompatTheme_actionBarStyle 5 -int styleable AppCompatTheme_actionBarTabBarStyle 6 -int styleable AppCompatTheme_actionBarTabStyle 7 -int styleable AppCompatTheme_actionBarTabTextStyle 8 -int styleable AppCompatTheme_actionBarTheme 9 -int styleable AppCompatTheme_actionBarWidgetTheme 10 -int styleable AppCompatTheme_actionButtonStyle 11 -int styleable AppCompatTheme_actionDropDownStyle 12 -int styleable AppCompatTheme_actionMenuTextAppearance 13 -int styleable AppCompatTheme_actionMenuTextColor 14 -int styleable AppCompatTheme_actionModeBackground 15 -int styleable AppCompatTheme_actionModeCloseButtonStyle 16 -int styleable AppCompatTheme_actionModeCloseContentDescription 17 -int styleable AppCompatTheme_actionModeCloseDrawable 18 -int styleable AppCompatTheme_actionModeCopyDrawable 19 -int styleable AppCompatTheme_actionModeCutDrawable 20 -int styleable AppCompatTheme_actionModeFindDrawable 21 -int styleable AppCompatTheme_actionModePasteDrawable 22 -int styleable AppCompatTheme_actionModePopupWindowStyle 23 -int styleable AppCompatTheme_actionModeSelectAllDrawable 24 -int styleable AppCompatTheme_actionModeShareDrawable 25 -int styleable AppCompatTheme_actionModeSplitBackground 26 -int styleable AppCompatTheme_actionModeStyle 27 -int styleable AppCompatTheme_actionModeTheme 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_android_windowAnimationStyle 37 -int styleable AppCompatTheme_android_windowIsFloating 38 -int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -int styleable AppCompatTheme_borderlessButtonStyle 40 -int styleable AppCompatTheme_buttonBarButtonStyle 41 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -int styleable AppCompatTheme_buttonBarStyle 45 -int styleable AppCompatTheme_buttonStyle 46 -int styleable AppCompatTheme_buttonStyleSmall 47 -int styleable AppCompatTheme_checkboxStyle 48 -int styleable AppCompatTheme_checkedTextViewStyle 49 -int styleable AppCompatTheme_colorAccent 50 -int styleable AppCompatTheme_colorBackgroundFloating 51 -int styleable AppCompatTheme_colorButtonNormal 52 -int styleable AppCompatTheme_colorControlActivated 53 -int styleable AppCompatTheme_colorControlHighlight 54 -int styleable AppCompatTheme_colorControlNormal 55 -int styleable AppCompatTheme_colorError 56 -int styleable AppCompatTheme_colorPrimary 57 -int styleable AppCompatTheme_colorPrimaryDark 58 -int styleable AppCompatTheme_colorSwitchThumbNormal 59 -int styleable AppCompatTheme_controlBackground 60 -int styleable AppCompatTheme_dialogCornerRadius 61 -int styleable AppCompatTheme_dialogPreferredPadding 62 -int styleable AppCompatTheme_dialogTheme 63 -int styleable AppCompatTheme_dividerHorizontal 64 -int styleable AppCompatTheme_dividerVertical 65 -int styleable AppCompatTheme_dropDownListViewStyle 66 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -int styleable AppCompatTheme_editTextBackground 68 -int styleable AppCompatTheme_editTextColor 69 -int styleable AppCompatTheme_editTextStyle 70 -int styleable AppCompatTheme_homeAsUpIndicator 71 -int styleable AppCompatTheme_imageButtonStyle 72 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -int styleable AppCompatTheme_listDividerAlertDialog 76 -int styleable AppCompatTheme_listMenuViewStyle 77 -int styleable AppCompatTheme_listPopupWindowStyle 78 -int styleable AppCompatTheme_listPreferredItemHeight 79 -int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -int styleable AppCompatTheme_panelBackground 86 -int styleable AppCompatTheme_panelMenuListTheme 87 -int styleable AppCompatTheme_panelMenuListWidth 88 -int styleable AppCompatTheme_popupMenuStyle 89 -int styleable AppCompatTheme_popupWindowStyle 90 -int styleable AppCompatTheme_radioButtonStyle 91 -int styleable AppCompatTheme_ratingBarStyle 92 -int styleable AppCompatTheme_ratingBarStyleIndicator 93 -int styleable AppCompatTheme_ratingBarStyleSmall 94 -int styleable AppCompatTheme_searchViewStyle 95 -int styleable AppCompatTheme_seekBarStyle 96 -int styleable AppCompatTheme_selectableItemBackground 97 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -int styleable AppCompatTheme_spinnerStyle 100 -int styleable AppCompatTheme_switchStyle 101 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -int styleable AppCompatTheme_textAppearanceListItem 103 -int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -int styleable AppCompatTheme_textAppearanceListItemSmall 105 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -int styleable AppCompatTheme_textColorAlertDialogListItem 110 -int styleable AppCompatTheme_textColorSearchUrl 111 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -int styleable AppCompatTheme_toolbarStyle 113 -int styleable AppCompatTheme_tooltipForegroundColor 114 -int styleable AppCompatTheme_tooltipFrameBackground 115 -int styleable AppCompatTheme_viewInflaterClass 116 -int styleable AppCompatTheme_windowActionBar 117 -int styleable AppCompatTheme_windowActionBarOverlay 118 -int styleable AppCompatTheme_windowActionModeOverlay 119 -int styleable AppCompatTheme_windowFixedHeightMajor 120 -int styleable AppCompatTheme_windowFixedHeightMinor 121 -int styleable AppCompatTheme_windowFixedWidthMajor 122 -int styleable AppCompatTheme_windowFixedWidthMinor 123 -int styleable AppCompatTheme_windowMinWidthMajor 124 -int styleable AppCompatTheme_windowMinWidthMinor 125 -int styleable AppCompatTheme_windowNoTitle 126 -int[] styleable ButtonBarLayout { 0x0 } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } -int styleable CheckedTextView_android_checkMark 0 -int styleable CheckedTextView_checkMarkCompat 1 -int styleable CheckedTextView_checkMarkTint 2 -int styleable CheckedTextView_checkMarkTintMode 3 -int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonCompat 1 -int styleable CompoundButton_buttonTint 2 -int styleable CompoundButton_buttonTintMode 3 -int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -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 LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } -int styleable LinearLayoutCompat_android_baselineAligned 0 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 -int styleable LinearLayoutCompat_android_gravity 2 -int styleable LinearLayoutCompat_android_orientation 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 { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_height 1 -int styleable LinearLayoutCompat_Layout_android_layout_weight 2 -int styleable LinearLayoutCompat_Layout_android_layout_width 3 -int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } -int styleable MenuGroup_android_checkableBehavior 0 -int styleable MenuGroup_android_enabled 1 -int styleable MenuGroup_android_id 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_visible 5 -int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable MenuItem_actionLayout 0 -int styleable MenuItem_actionProviderClass 1 -int styleable MenuItem_actionViewClass 2 -int styleable MenuItem_alphabeticModifiers 3 -int styleable MenuItem_android_alphabeticShortcut 4 -int styleable MenuItem_android_checkable 5 -int styleable MenuItem_android_checked 6 -int styleable MenuItem_android_enabled 7 -int styleable MenuItem_android_icon 8 -int styleable MenuItem_android_id 9 -int styleable MenuItem_android_menuCategory 10 -int styleable MenuItem_android_numericShortcut 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_android_orderInCategory 13 -int styleable MenuItem_android_title 14 -int styleable MenuItem_android_titleCondensed 15 -int styleable MenuItem_android_visible 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 { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } -int styleable MenuView_android_headerBackground 0 -int styleable MenuView_android_horizontalDivider 1 -int styleable MenuView_android_itemBackground 2 -int styleable MenuView_android_itemIconDisabledAlpha 3 -int styleable MenuView_android_itemTextAppearance 4 -int styleable MenuView_android_verticalDivider 5 -int styleable MenuView_android_windowAnimationStyle 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } -int styleable PopupWindow_android_popupAnimationStyle 0 -int styleable PopupWindow_android_popupBackground 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x0 } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x0, 0x0 } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_imeOptions 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_maxWidth 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 Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } -int styleable Spinner_android_dropDownWidth 0 -int styleable Spinner_android_entries 1 -int styleable Spinner_android_popupBackground 2 -int styleable Spinner_android_prompt 3 -int styleable Spinner_popupTheme 4 -int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SwitchCompat_android_textOff 0 -int styleable SwitchCompat_android_textOn 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 { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } -int styleable TextAppearance_android_fontFamily 0 -int styleable TextAppearance_android_shadowColor 1 -int styleable TextAppearance_android_shadowDx 2 -int styleable TextAppearance_android_shadowDy 3 -int styleable TextAppearance_android_shadowRadius 4 -int styleable TextAppearance_android_textColor 5 -int styleable TextAppearance_android_textColorHint 6 -int styleable TextAppearance_android_textColorLink 7 -int styleable TextAppearance_android_textFontWeight 8 -int styleable TextAppearance_android_textSize 9 -int styleable TextAppearance_android_textStyle 10 -int styleable TextAppearance_android_typeface 11 -int styleable TextAppearance_fontFamily 12 -int styleable TextAppearance_fontVariationSettings 13 -int styleable TextAppearance_textAllCaps 14 -int styleable TextAppearance_textLocale 15 -int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -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_menu 14 -int styleable Toolbar_navigationContentDescription 15 -int styleable Toolbar_navigationIcon 16 -int styleable Toolbar_popupTheme 17 -int styleable Toolbar_subtitle 18 -int styleable Toolbar_subtitleTextAppearance 19 -int styleable Toolbar_subtitleTextColor 20 -int styleable Toolbar_title 21 -int styleable Toolbar_titleMargin 22 -int styleable Toolbar_titleMarginBottom 23 -int styleable Toolbar_titleMarginEnd 24 -int styleable Toolbar_titleMarginStart 25 -int styleable Toolbar_titleMarginTop 26 -int styleable Toolbar_titleMargins 27 -int styleable Toolbar_titleTextAppearance 28 -int styleable Toolbar_titleTextColor 29 -int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } -int styleable View_android_focusable 0 -int styleable View_android_theme 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_inflatedId 1 -int styleable ViewStubCompat_android_layout 2 diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/annotations.zip b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/annotations.zip deleted file mode 100644 index 1944aa6..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/annotations.zip and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/classes.jar b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/classes.jar deleted file mode 100644 index 2723fd2..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/classes.jar and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/proguard.txt b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/proguard.txt deleted file mode 100644 index 6f2fc96..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/proguard.txt +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright (C) 2018 The Android Open Source Project -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# aapt is not able to read app::actionViewClass and app:actionProviderClass to produce proguard -# keep rules. Add a commonly used SearchView to the keep list until b/109831488 is resolved. --keep class androidx.appcompat.widget.SearchView { (...); } - -# Never inline methods, but allow shrinking and obfuscation. --keepclassmembernames,allowobfuscation,allowshrinking class androidx.appcompat.widget.AppCompatTextViewAutoSizeHelper$Impl* { - ; -} diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/public.txt b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/public.txt deleted file mode 100644 index ce374ca..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/public.txt +++ /dev/null @@ -1,369 +0,0 @@ -style TextAppearance_AppCompat -style TextAppearance_AppCompat_Body1 -style TextAppearance_AppCompat_Body2 -style TextAppearance_AppCompat_Button -style TextAppearance_AppCompat_Caption -style TextAppearance_AppCompat_Display1 -style TextAppearance_AppCompat_Display2 -style TextAppearance_AppCompat_Display3 -style TextAppearance_AppCompat_Display4 -style TextAppearance_AppCompat_Headline -style TextAppearance_AppCompat_Inverse -style TextAppearance_AppCompat_Large -style TextAppearance_AppCompat_Large_Inverse -style TextAppearance_AppCompat_Light_SearchResult_Subtitle -style TextAppearance_AppCompat_Light_SearchResult_Title -style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -style TextAppearance_AppCompat_Medium -style TextAppearance_AppCompat_Medium_Inverse -style TextAppearance_AppCompat_Menu -style TextAppearance_AppCompat_SearchResult_Subtitle -style TextAppearance_AppCompat_SearchResult_Title -style TextAppearance_AppCompat_Small -style TextAppearance_AppCompat_Small_Inverse -style TextAppearance_AppCompat_Subhead -style TextAppearance_AppCompat_Subhead_Inverse -style TextAppearance_AppCompat_Title -style TextAppearance_AppCompat_Title_Inverse -style TextAppearance_AppCompat_Widget_ActionBar_Menu -style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -style TextAppearance_AppCompat_Widget_ActionBar_Title -style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -style TextAppearance_AppCompat_Widget_ActionMode_Title -style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -style TextAppearance_AppCompat_Widget_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 Theme_AppCompat -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 ThemeOverlay_AppCompat -style ThemeOverlay_AppCompat_ActionBar -style ThemeOverlay_AppCompat_Dark -style ThemeOverlay_AppCompat_Dark_ActionBar -style ThemeOverlay_AppCompat_DayNight -style ThemeOverlay_AppCompat_DayNight_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_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_AutoCompleteTextView -style Widget_AppCompat_Light_DropDownItem_Spinner -style Widget_AppCompat_Light_ListPopupWindow -style Widget_AppCompat_Light_ListView_DropDown -style Widget_AppCompat_Light_PopupMenu -style Widget_AppCompat_Light_PopupMenu_Overflow -style Widget_AppCompat_Light_SearchView -style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -style Widget_AppCompat_ListPopupWindow -style Widget_AppCompat_ListView -style Widget_AppCompat_ListView_DropDown -style Widget_AppCompat_ListView_Menu -style Widget_AppCompat_PopupMenu -style Widget_AppCompat_PopupMenu_Overflow -style Widget_AppCompat_PopupWindow -style Widget_AppCompat_ProgressBar -style Widget_AppCompat_ProgressBar_Horizontal -style Widget_AppCompat_RatingBar -style Widget_AppCompat_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 -style Widget_AppCompat_TextView_SpinnerItem -style Widget_AppCompat_Toolbar -style Widget_AppCompat_Toolbar_Button_Navigation -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 actionModeCloseContentDescription -attr actionModeCloseDrawable -attr actionModeCopyDrawable -attr actionModeCutDrawable -attr actionModeFindDrawable -attr actionModePasteDrawable -attr actionModeSelectAllDrawable -attr actionModeShareDrawable -attr actionModeSplitBackground -attr actionModeStyle -attr actionModeTheme -attr actionModeWebSearchDrawable -attr actionOverflowButtonStyle -attr actionOverflowMenuStyle -attr actionProviderClass -attr actionViewClass -attr alertDialogStyle -attr alertDialogTheme -attr arrowHeadLength -attr arrowShaftLength -attr autoCompleteTextViewStyle -attr autoSizeMaxTextSize -attr autoSizeMinTextSize -attr autoSizePresetSizes -attr autoSizeStepGranularity -attr autoSizeTextType -attr background -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 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 commitIcon -attr contentInsetEnd -attr contentInsetEndWithActions -attr contentInsetLeft -attr contentInsetRight -attr contentInsetStart -attr contentInsetStartWithNavigation -attr customNavigationLayout -attr dialogCornerRadius -attr dialogPreferredPadding -attr dialogTheme -attr displayOptions -attr divider -attr dividerHorizontal -attr dividerPadding -attr dividerVertical -attr drawableSize -attr drawerArrowStyle -attr dropDownListViewStyle -attr editTextBackground -attr editTextColor -attr editTextStyle -attr elevation -attr emojiCompatEnabled -attr firstBaselineToTopHeight -attr fontFamily -attr fontVariationSettings -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 isLightTheme -attr itemPadding -attr lastBaselineToBottomHeight -attr layout -attr lineHeight -attr listChoiceBackgroundIndicator -attr listChoiceIndicatorMultipleAnimated -attr listChoiceIndicatorSingleAnimated -attr listDividerAlertDialog -attr listPopupWindowStyle -attr listPreferredItemHeight -attr listPreferredItemHeightLarge -attr listPreferredItemHeightSmall -attr listPreferredItemPaddingEnd -attr listPreferredItemPaddingLeft -attr listPreferredItemPaddingRight -attr listPreferredItemPaddingStart -attr logo -attr logoDescription -attr maxButtonHeight -attr measureWithLargestChild -attr navigationContentDescription -attr navigationIcon -attr navigationMode -attr overlapAnchor -attr paddingEnd -attr paddingStart -attr panelBackground -attr popupMenuStyle -attr popupTheme -attr popupWindowStyle -attr preserveIconSpacing -attr progressBarPadding -attr progressBarStyle -attr queryBackground -attr queryHint -attr radioButtonStyle -attr ratingBarStyle -attr ratingBarStyleIndicator -attr ratingBarStyleSmall -attr searchHintIcon -attr searchIcon -attr searchViewStyle -attr seekBarStyle -attr selectableItemBackground -attr selectableItemBackgroundBorderless -attr showAsAction -attr showDividers -attr showText -attr spinBars -attr spinnerDropDownItemStyle -attr spinnerStyle -attr splitTrack -attr srcCompat -attr state_above_anchor -attr submitBackground -attr subtitle -attr subtitleTextAppearance -attr subtitleTextColor -attr subtitleTextStyle -attr suggestionRowLayout -layout support_simple_spinner_dropdown_item -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 textLocale -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 track -attr trackTint -attr trackTintMode -attr voiceIcon -attr windowActionBar -attr windowActionBarOverlay -attr windowActionModeOverlay -attr windowNoTitle diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res.zip b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res.zip deleted file mode 100644 index 08d3912..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res.zip and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_fade_in.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_fade_in.xml deleted file mode 100644 index da7ee29..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_fade_in.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_fade_out.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_fade_out.xml deleted file mode 100644 index c81b39a..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_fade_out.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_grow_fade_in_from_bottom.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_grow_fade_in_from_bottom.xml deleted file mode 100644 index 79d02d4..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_grow_fade_in_from_bottom.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_popup_enter.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_popup_enter.xml deleted file mode 100644 index 91664da..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_popup_enter.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_popup_exit.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_popup_exit.xml deleted file mode 100644 index db7e807..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_popup_exit.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_shrink_fade_out_from_bottom.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_shrink_fade_out_from_bottom.xml deleted file mode 100644 index 9a23cd2..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_shrink_fade_out_from_bottom.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_in_bottom.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_in_bottom.xml deleted file mode 100644 index 1afa8fe..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_in_bottom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_in_top.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_in_top.xml deleted file mode 100644 index ab824f2..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_in_top.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_out_bottom.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_out_bottom.xml deleted file mode 100644 index b309fe8..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_out_bottom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_out_top.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_out_top.xml deleted file mode 100644 index e84d1c7..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_slide_out_top.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_tooltip_enter.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_tooltip_enter.xml deleted file mode 100644 index 134d9d7..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_tooltip_enter.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_tooltip_exit.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_tooltip_exit.xml deleted file mode 100644 index 67f6af8..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/abc_tooltip_exit.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml deleted file mode 100644 index 8d892c1..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml deleted file mode 100644 index 57fc365..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml deleted file mode 100644 index a6ef064..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml deleted file mode 100644 index 0f13aaf..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml deleted file mode 100644 index 188e706..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml deleted file mode 100644 index 8b63d01..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml deleted file mode 100644 index 22bb845..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml deleted file mode 100644 index 51154c1..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml deleted file mode 100644 index c889ae6..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml deleted file mode 100644 index f0b9d7d..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml deleted file mode 100644 index 3269f8b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml deleted file mode 100644 index 0215835..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml deleted file mode 100644 index f5585e3..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml deleted file mode 100644 index 468b155..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_btn_colored_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_btn_colored_text_material.xml deleted file mode 100644 index 74170d6..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_btn_colored_text_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_color_highlight_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_color_highlight_material.xml deleted file mode 100644 index 8d53611..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_color_highlight_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_btn_checkable.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_btn_checkable.xml deleted file mode 100644 index e82eff4..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_btn_checkable.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_default.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_default.xml deleted file mode 100644 index abe3880..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_default.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_edittext.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_edittext.xml deleted file mode 100644 index 0e05e07..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_edittext.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_seek_thumb.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_seek_thumb.xml deleted file mode 100644 index 4fc9626..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_seek_thumb.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_spinner.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_spinner.xml deleted file mode 100644 index 0e05e07..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_spinner.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_switch_track.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_switch_track.xml deleted file mode 100644 index e663772..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color-v23/abc_tint_switch_track.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_background_cache_hint_selector_material_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_background_cache_hint_selector_material_dark.xml deleted file mode 100644 index e016076..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_background_cache_hint_selector_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_background_cache_hint_selector_material_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_background_cache_hint_selector_material_light.xml deleted file mode 100644 index 290faf1..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_background_cache_hint_selector_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_btn_colored_borderless_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_btn_colored_borderless_text_material.xml deleted file mode 100644 index 1480046..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_btn_colored_borderless_text_material.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_btn_colored_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_btn_colored_text_material.xml deleted file mode 100644 index 897a3f7..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_btn_colored_text_material.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_hint_foreground_material_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_hint_foreground_material_dark.xml deleted file mode 100644 index fe86872..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_hint_foreground_material_dark.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_hint_foreground_material_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_hint_foreground_material_light.xml deleted file mode 100644 index 1bef5af..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_hint_foreground_material_light.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_disable_only_material_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_disable_only_material_dark.xml deleted file mode 100644 index 724c255..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_disable_only_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_disable_only_material_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_disable_only_material_light.xml deleted file mode 100644 index 7395e68..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_disable_only_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_material_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_material_dark.xml deleted file mode 100644 index 7d66d02..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_material_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_material_light.xml deleted file mode 100644 index 105b643..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_primary_text_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_search_url_text.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_search_url_text.xml deleted file mode 100644 index 0631d5d..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_search_url_text.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_secondary_text_material_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_secondary_text_material_dark.xml deleted file mode 100644 index 6399b1d..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_secondary_text_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_secondary_text_material_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_secondary_text_material_light.xml deleted file mode 100644 index 87c015a..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_secondary_text_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_btn_checkable.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_btn_checkable.xml deleted file mode 100644 index 0c663f6..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_btn_checkable.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_default.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_default.xml deleted file mode 100644 index 8d7c391..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_default.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_edittext.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_edittext.xml deleted file mode 100644 index 536d77f..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_edittext.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_seek_thumb.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_seek_thumb.xml deleted file mode 100644 index cb53788..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_seek_thumb.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_spinner.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_spinner.xml deleted file mode 100644 index 44333dd..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_spinner.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_switch_track.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_switch_track.xml deleted file mode 100644 index 22322f8..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/abc_tint_switch_track.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/switch_thumb_material_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/switch_thumb_material_dark.xml deleted file mode 100644 index 6153382..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/switch_thumb_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/switch_thumb_material_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/switch_thumb_material_light.xml deleted file mode 100644 index 94d7114..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/color/switch_thumb_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index 4d9f861..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 9911008..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 69ff9dd..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 9218981..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index a588576..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index 4657a25..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 3fd617b..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index 2264398..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 65ccd8f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index c2264a8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png deleted file mode 100644 index c09ec90..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png deleted file mode 100644 index 62fbd2c..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 2f6ef91..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 863ce95..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index b6d4677..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 60081db..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index abb52c9..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index 9d8451a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index d8d6d7f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index 30c1c1e..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index 1f1cdad..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index ffb0096..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index e54950e..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 0da5b1d..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index f8063b2..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 4b0b10a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png deleted file mode 100644 index d3556a8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png deleted file mode 100644 index 183c9ac..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png deleted file mode 100644 index 9b67079..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 5b13bc1..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index 5440b1a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 05d6920..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index 6282df4..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index ddbec8b..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index c888ee0..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 588161e..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 7cf976d..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 4c0f0b3..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index fa0ed8f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 7a9fcbc..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 8e6c271..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 9f0d2c8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index 6e18d40..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index d0a41a5..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index bebb1e2..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index 038e000..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 6086f9c..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index c2264a8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png deleted file mode 100644 index addb54a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png deleted file mode 100644 index 5fcd5b2..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 251b989..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 01efec0..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index f1d1b61..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 10851f6..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index 15c1ebb..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index 5f55cd5..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index 1bff7fa..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index 9280f82..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index 21bffc6..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index 8878129..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index 869c8b0..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index ed75cb8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index ab8460f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 12b0a79..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png deleted file mode 100644 index e243fd8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png deleted file mode 100644 index 55b8b36..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png deleted file mode 100644 index e6eff09..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 3ffa251..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index 5d7ad2f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 0c766f3..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index 4f66d7a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_action_bar_item_background_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_action_bar_item_background_material.xml deleted file mode 100644 index 595c56c..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_action_bar_item_background_material.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_btn_colored_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_btn_colored_material.xml deleted file mode 100644 index 10251aa..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_btn_colored_material.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_dialog_material_background.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_dialog_material_background.xml deleted file mode 100644 index 7ef438b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_dialog_material_background.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_edit_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_edit_text_material.xml deleted file mode 100644 index d98b008..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_edit_text_material.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_list_divider_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_list_divider_material.xml deleted file mode 100644 index 5ed2121..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v21/abc_list_divider_material.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v23/abc_control_background_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v23/abc_control_background_material.xml deleted file mode 100644 index 0b54039..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-v23/abc_control_background_material.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-watch-v20/abc_dialog_material_background.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-watch-v20/abc_dialog_material_background.xml deleted file mode 100644 index 242761b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-watch-v20/abc_dialog_material_background.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index 6284eaa..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 4902520..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 59a683a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 03bf49c..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index 342323b..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index 1d29f9a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 92b43ba..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index 600178a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index ca303fd..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index c2264a8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png deleted file mode 100644 index 67c25ae..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png deleted file mode 100644 index 17c34a1..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 988548a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 15fcf6a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 65275b3..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index ee95ed4..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index 99cf6de..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index d8cc7d3..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index c08ec90..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index 0486af1..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index 20079d8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index fb4e42a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index 44b9a14..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index bcf6b7f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index 7c56175..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 2242d2f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png deleted file mode 100644 index 529d550..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png deleted file mode 100644 index 1f8cc88..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png deleted file mode 100644 index 6c8f6a4..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 8ff3a83..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index e7e693a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 819171a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index 4def8c8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png deleted file mode 100644 index 4eae28f..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index d934b60..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 8c82ec3..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 8fc0a9b..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index 3038d70..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index c079867..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 3b9dc7c..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png deleted file mode 100644 index f6d2f32..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index fe826b7..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png deleted file mode 100644 index 987b2bc..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png deleted file mode 100644 index 8b050e8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png deleted file mode 100644 index 00e370a..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png deleted file mode 100644 index 719c7b5..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png deleted file mode 100644 index 75bd580..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 4f3b147..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 224a081..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png deleted file mode 100644 index b5ceeac..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png deleted file mode 100644 index 4727a7d..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png deleted file mode 100644 index 4657815..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index 4aa0a34..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index 6178c45..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png deleted file mode 100644 index 3d9b961..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png deleted file mode 100644 index 56a69df..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 7924000..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index ba5abaa..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index eeb74c8..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png deleted file mode 100644 index d6a8790..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png deleted file mode 100644 index de00185..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png deleted file mode 100644 index d186a5b..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png deleted file mode 100644 index 4d3d3a4..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png deleted file mode 100644 index c5acb84..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png deleted file mode 100644 index 30328ae..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png deleted file mode 100644 index bc21142..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index e40fa4e..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 4e18de2..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 5fa3266..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index c11cb2e..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png deleted file mode 100644 index 639e6cb..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png deleted file mode 100644 index 355d5b7..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png deleted file mode 100644 index 7dfaf7c..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png deleted file mode 100644 index fe8f2e4..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png deleted file mode 100644 index 752cb57..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png deleted file mode 100644 index 40255c3..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png deleted file mode 100644 index 0210ad1..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png deleted file mode 100644 index 565f0b2..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png deleted file mode 100644 index 894c734..0000000 Binary files a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png and /dev/null differ diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_borderless_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_borderless_material.xml deleted file mode 100644 index f389460..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_borderless_material.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_check_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_check_material.xml deleted file mode 100644 index f6e938f..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_check_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_check_material_anim.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_check_material_anim.xml deleted file mode 100644 index ce7a968..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_check_material_anim.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_colored_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_colored_material.xml deleted file mode 100644 index ec93b8b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_colored_material.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_default_mtrl_shape.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_default_mtrl_shape.xml deleted file mode 100644 index c50d4b1..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_default_mtrl_shape.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_radio_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_radio_material.xml deleted file mode 100644 index 6e9f9cf..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_radio_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_radio_material_anim.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_radio_material_anim.xml deleted file mode 100644 index 64cebc2..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_btn_radio_material_anim.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_cab_background_internal_bg.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_cab_background_internal_bg.xml deleted file mode 100644 index 9faf60a..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_cab_background_internal_bg.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_cab_background_top_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_cab_background_top_material.xml deleted file mode 100644 index 0922395..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_cab_background_top_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_dialog_material_background.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_dialog_material_background.xml deleted file mode 100644 index 978565b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_dialog_material_background.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_edit_text_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_edit_text_material.xml deleted file mode 100644 index 46c4e91..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_edit_text_material.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_ab_back_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_ab_back_material.xml deleted file mode 100644 index 5a89523..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_ab_back_material.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml deleted file mode 100644 index 68547eb..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_clear_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_clear_material.xml deleted file mode 100644 index e6d106b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_clear_material.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_go_search_api_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_go_search_api_material.xml deleted file mode 100644 index 0c88119..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_go_search_api_material.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml deleted file mode 100644 index 60ebf76..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml deleted file mode 100644 index 592bd60..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_overflow_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_overflow_material.xml deleted file mode 100644 index 1420edd..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_overflow_material.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml deleted file mode 100644 index 5404374..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml deleted file mode 100644 index d0de4ae..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml deleted file mode 100644 index 597a1b3..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_search_api_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_search_api_material.xml deleted file mode 100644 index b4cba34..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_search_api_material.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_voice_search_api_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_voice_search_api_material.xml deleted file mode 100644 index 143db55..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ic_voice_search_api_material.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_item_background_holo_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_item_background_holo_dark.xml deleted file mode 100644 index 72162c2..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_item_background_holo_dark.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_item_background_holo_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_item_background_holo_light.xml deleted file mode 100644 index 1c180b2..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_item_background_holo_light.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_divider_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_divider_material.xml deleted file mode 100644 index 6739a82..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_divider_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml deleted file mode 100644 index 0add58c..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml deleted file mode 100644 index 0c1d3e6..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_holo_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_holo_dark.xml deleted file mode 100644 index 1fb5fc4..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_holo_dark.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_holo_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_holo_light.xml deleted file mode 100644 index 8d24047..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_list_selector_holo_light.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_indicator_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_indicator_material.xml deleted file mode 100644 index 97ba1de..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_indicator_material.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_material.xml deleted file mode 100644 index 97ba1de..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_material.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_small_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_small_material.xml deleted file mode 100644 index 97ba1de..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_ratingbar_small_material.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_thumb_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_thumb_material.xml deleted file mode 100644 index 7fea83b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_thumb_material.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_tick_mark_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_tick_mark_material.xml deleted file mode 100644 index e2d86c9..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_tick_mark_material.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_track_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_track_material.xml deleted file mode 100644 index e68ac03..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_seekbar_track_material.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_spinner_textfield_background_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_spinner_textfield_background_material.xml deleted file mode 100644 index d0f46a8..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_spinner_textfield_background_material.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_star_black_48dp.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_star_black_48dp.xml deleted file mode 100644 index 4f380aa..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_star_black_48dp.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_star_half_black_48dp.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_star_half_black_48dp.xml deleted file mode 100644 index ba1dc57..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_star_half_black_48dp.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_switch_thumb_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_switch_thumb_material.xml deleted file mode 100644 index ee96ec2..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_switch_thumb_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_tab_indicator_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_tab_indicator_material.xml deleted file mode 100644 index 1a8de1b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_tab_indicator_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_text_cursor_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_text_cursor_material.xml deleted file mode 100644 index 885670c..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_text_cursor_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_textfield_search_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_textfield_search_material.xml deleted file mode 100644 index 0887396..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/abc_textfield_search_material.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_checked_mtrl.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_checked_mtrl.xml deleted file mode 100644 index 464a450..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_checked_mtrl.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml deleted file mode 100644 index 77d5418..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml deleted file mode 100644 index f21429f..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml deleted file mode 100644 index 9d30913..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_off_mtrl.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_off_mtrl.xml deleted file mode 100644 index 170e82d..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_off_mtrl.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml deleted file mode 100644 index 84561d0..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_on_mtrl.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_on_mtrl.xml deleted file mode 100644 index ce2116a..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_on_mtrl.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml deleted file mode 100644 index 2108cf1..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/test_level_drawable.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/test_level_drawable.xml deleted file mode 100644 index 41dadfd..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/test_level_drawable.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/tooltip_frame_dark.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/tooltip_frame_dark.xml deleted file mode 100644 index 43c2f99..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/tooltip_frame_dark.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/tooltip_frame_light.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/tooltip_frame_light.xml deleted file mode 100644 index 20966d5..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/drawable/tooltip_frame_light.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml deleted file mode 100644 index 3db122b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml deleted file mode 100644 index 47f65a0..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml deleted file mode 100644 index 3db122b..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml deleted file mode 100644 index 47f65a0..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml deleted file mode 100644 index 956d389..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml deleted file mode 100644 index 956d389..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/fast_out_slow_in.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/fast_out_slow_in.xml deleted file mode 100644 index 14950d3..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/interpolator/fast_out_slow_in.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/layout-v26/abc_screen_toolbar.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/layout-v26/abc_screen_toolbar.xml deleted file mode 100644 index 8d2ea46..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/layout-v26/abc_screen_toolbar.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml b/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml deleted file mode 100644 index 773065d..0000000 --- a/GameAtlas/GameAtlas/obj/Debug/net6.0-android/lp/123/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - -