From 8fbeb5c409202b4e05cbdb6e0c444f45615113ba Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Mon, 2 Mar 2020 10:07:55 +0100 Subject: [PATCH] upgrading build tools and NuGet packages. switching to Xamarin's Biometric Bindings (even though this reverts from 1.0.1 to 1.0.0) because of build issues/incompatibilities --- .../Additions/AboutAdditions.txt | 48 - src/BiometricBinding/BiometricBinding.csproj | 70 - src/BiometricBinding/Jars/AboutJars.txt | 24 - src/BiometricBinding/Jars/biometric-1.0.1.aar | Bin 162826 -> 0 bytes .../Properties/AssemblyInfo.cs | 30 - .../Transforms/EnumFields.xml | 14 - .../Transforms/EnumMethods.xml | 13 - src/BiometricBinding/Transforms/Metadata.xml | 9 - src/KeePass.sln | 26 - src/Kp2aBusinessLogic/IKp2aApp.cs | 6 +- src/Kp2aBusinessLogic/Io/WebDavFileStorage.cs | 4 +- .../Kp2aBusinessLogic.csproj | 84 +- .../Resources/Resource.Designer.cs | 4380 ++++++++++------- src/PluginSdkBinding/PluginSdkBinding.csproj | 2 +- src/build-scripts/build-java.bat | 10 +- src/build-scripts/get-dependencies.bat | 17 + src/java/JavaFileStorage/app/build.gradle | 5 +- .../com/jcraft/jsch/jgss/GSSContextKrb5.java | 142 +- src/java/JavaFileStorage/build.gradle | 7 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- .../JavaFileStorageTest-AS/app/build.gradle | 6 +- .../app/src/main/AndroidManifest.xml | 1 - src/java/JavaFileStorageTest-AS/build.gradle | 4 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- .../Keepass2AndroidPluginSDK2/build.gradle | 17 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- src/java/PluginQR/build.gradle | 2 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- .../android-filechooser-AS/.idea/gradle.xml | 5 + .../android-filechooser-AS/.idea/misc.xml | 31 +- .../android-filechooser-AS/.idea/modules.xml | 1 + .../.idea/workspace.xml | 600 +-- .../android-filechooser-AS.iml | 16 +- src/java/android-filechooser-AS/app/app.iml | 125 +- .../android-filechooser-AS/app/build.gradle | 8 +- .../app/src/main/AndroidManifest.xml | 3 - src/java/android-filechooser-AS/build.gradle | 20 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- .../kp2akeytransform/bin/kp2akeytransform.jar | Bin 4055 -> 0 bytes src/keepass2android/BiometricModule.cs | 4 +- src/keepass2android/FileSelectHelper.cs | 4 +- .../FingerprintSetupActivity.cs | 1 - src/keepass2android/app/App.cs | 15 +- src/keepass2android/keepass2android.csproj | 125 +- 44 files changed, 3222 insertions(+), 2667 deletions(-) delete mode 100644 src/BiometricBinding/Additions/AboutAdditions.txt delete mode 100644 src/BiometricBinding/BiometricBinding.csproj delete mode 100644 src/BiometricBinding/Jars/AboutJars.txt delete mode 100644 src/BiometricBinding/Jars/biometric-1.0.1.aar delete mode 100644 src/BiometricBinding/Properties/AssemblyInfo.cs delete mode 100644 src/BiometricBinding/Transforms/EnumFields.xml delete mode 100644 src/BiometricBinding/Transforms/EnumMethods.xml delete mode 100644 src/BiometricBinding/Transforms/Metadata.xml create mode 100644 src/build-scripts/get-dependencies.bat delete mode 100644 src/java/kp2akeytransform/bin/kp2akeytransform.jar diff --git a/src/BiometricBinding/Additions/AboutAdditions.txt b/src/BiometricBinding/Additions/AboutAdditions.txt deleted file mode 100644 index c2403076..00000000 --- a/src/BiometricBinding/Additions/AboutAdditions.txt +++ /dev/null @@ -1,48 +0,0 @@ -Additions allow you to add arbitrary C# to the generated classes -before they are compiled. This can be helpful for providing convenience -methods or adding pure C# classes. - -== Adding Methods to Generated Classes == - -Let's say the library being bound has a Rectangle class with a constructor -that takes an x and y position, and a width and length size. It will look like -this: - -public partial class Rectangle -{ - public Rectangle (int x, int y, int width, int height) - { - // JNI bindings - } -} - -Imagine we want to add a constructor to this class that takes a Point and -Size structure instead of 4 ints. We can add a new file called Rectangle.cs -with a partial class containing our new method: - -public partial class Rectangle -{ - public Rectangle (Point location, Size size) : - this (location.X, location.Y, size.Width, size.Height) - { - } -} - -At compile time, the additions class will be added to the generated class -and the final assembly will a Rectangle class with both constructors. - - -== Adding C# Classes == - -Another thing that can be done is adding fully C# managed classes to the -generated library. In the above example, let's assume that there isn't a -Point class available in Java or our library. The one we create doesn't need -to interact with Java, so we'll create it like a normal class in C#. - -By adding a Point.cs file with this class, it will end up in the binding library: - -public class Point -{ - public int X { get; set; } - public int Y { get; set; } -} \ No newline at end of file diff --git a/src/BiometricBinding/BiometricBinding.csproj b/src/BiometricBinding/BiometricBinding.csproj deleted file mode 100644 index efe3280c..00000000 --- a/src/BiometricBinding/BiometricBinding.csproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4} - {10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {77efb91c-a7e9-4b0e-a7c5-31eeec3c6d46} - Library - Properties - BiometricBinding - BiometricBinding - 512 - false - v10.0 - class-parse - XAJavaInterop1 - PackageReference - - - true - portable - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - portable - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - 1.0.0-preview02 - - - - - \ No newline at end of file diff --git a/src/BiometricBinding/Jars/AboutJars.txt b/src/BiometricBinding/Jars/AboutJars.txt deleted file mode 100644 index c359b62f..00000000 --- a/src/BiometricBinding/Jars/AboutJars.txt +++ /dev/null @@ -1,24 +0,0 @@ -This directory is for Android .jars. - -There are 2 types of jars that are supported: - -== Input Jar == - -This is the jar that bindings should be generated for. - -For example, if you were binding the Google Maps library, this would -be Google's "maps.jar". - -Set the build action for these jars in the properties page to "InputJar". - - -== Reference Jars == - -These are jars that are referenced by the input jar. C# bindings will -not be created for these jars. These jars will be used to resolve -types used by the input jar. - -NOTE: Do not add "android.jar" as a reference jar. It will be added automatically -based on the Target Framework selected. - -Set the build action for these jars in the properties page to "ReferenceJar". \ No newline at end of file diff --git a/src/BiometricBinding/Jars/biometric-1.0.1.aar b/src/BiometricBinding/Jars/biometric-1.0.1.aar deleted file mode 100644 index 6457ad1036699933efa25b36437e9305899e0d9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162826 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

(IwS3!|DWtKkkz} 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

)8E zPnxqFJiEE1$D?>o#vKVa*U{j7>Mzsae8!i#2ItdnHyfN!y&u(_<*3pfml}ifS<|FG z5!J&KpL!UqIm;QI+p|D(mSZ>9HaMStUtn-P z<6+F;eCFK>%~>|g-JkEe!TI$2wogX!q*o2re?A*va6a`n!{B`Cp-gj@{aSZi4j7!z z^Zquty0->+zfI{L#nZBpX?pUpqMzm*dyj5*24^kXgl;y*S<8-|$@0&7)L?_LrV%Am UB_%bXs}8RBPD-kw|C^NbKfQu-qyPW_ diff --git a/src/BiometricBinding/Properties/AssemblyInfo.cs b/src/BiometricBinding/Properties/AssemblyInfo.cs deleted file mode 100644 index f874d2fc..00000000 --- a/src/BiometricBinding/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using Android.App; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("BiometricBinding")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("BiometricBinding")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/BiometricBinding/Transforms/EnumFields.xml b/src/BiometricBinding/Transforms/EnumFields.xml deleted file mode 100644 index 22959957..00000000 --- a/src/BiometricBinding/Transforms/EnumFields.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - \ No newline at end of file diff --git a/src/BiometricBinding/Transforms/EnumMethods.xml b/src/BiometricBinding/Transforms/EnumMethods.xml deleted file mode 100644 index 49216c61..00000000 --- a/src/BiometricBinding/Transforms/EnumMethods.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - \ No newline at end of file diff --git a/src/BiometricBinding/Transforms/Metadata.xml b/src/BiometricBinding/Transforms/Metadata.xml deleted file mode 100644 index 91493a25..00000000 --- a/src/BiometricBinding/Transforms/Metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/src/KeePass.sln b/src/KeePass.sln index 56186ae4..0e3a53ad 100644 --- a/src/KeePass.sln +++ b/src/KeePass.sln @@ -27,8 +27,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SamsungPass", "SamsungPass\ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PCloudBindings", "PCloudBindings\PCloudBindings.csproj", "{2DB80C77-D46F-4970-B967-E9FFA9B2AC2E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BiometricBinding", "BiometricBinding\BiometricBinding.csproj", "{2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -297,30 +295,6 @@ Global {2DB80C77-D46F-4970-B967-E9FFA9B2AC2E}.ReleaseNoNet|Win32.Build.0 = ReleaseNoNet|Any CPU {2DB80C77-D46F-4970-B967-E9FFA9B2AC2E}.ReleaseNoNet|x64.ActiveCfg = ReleaseNoNet|Any CPU {2DB80C77-D46F-4970-B967-E9FFA9B2AC2E}.ReleaseNoNet|x64.Build.0 = ReleaseNoNet|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|Win32.ActiveCfg = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|Win32.Build.0 = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|x64.ActiveCfg = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Debug|x64.Build.0 = Debug|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|Any CPU.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|Win32.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|Win32.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|x64.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.Release|x64.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|Any CPU.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|Any CPU.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|Mixed Platforms.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|Mixed Platforms.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|Win32.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|Win32.Build.0 = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|x64.ActiveCfg = Release|Any CPU - {2B1DE455-BF8E-4F8A-87BE-AE7EA354F3E4}.ReleaseNoNet|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/Kp2aBusinessLogic/IKp2aApp.cs b/src/Kp2aBusinessLogic/IKp2aApp.cs index c5f2b0dc..46a3f9f4 100644 --- a/src/Kp2aBusinessLogic/IKp2aApp.cs +++ b/src/Kp2aBusinessLogic/IKp2aApp.cs @@ -11,7 +11,7 @@ using KeePassLib.Keys; using KeePassLib.Serialization; using keepass2android.Io; using KeePassLib.Interfaces; -#if !NoNet +#if !NoNet && !EXCLUDE_JAVAFILESTORAGE using Keepass2android.Javafilestorage; #endif @@ -29,7 +29,7 @@ namespace keepass2android } - ///

+ /// /// Interface through which Activities and the logic layer can access some app specific functionalities and Application static data /// /// This also contains methods which are UI specific and should be replacable for testing. @@ -123,7 +123,7 @@ namespace keepass2android bool CheckForDuplicateUuids { get; } -#if !NoNet +#if !NoNet && !EXCLUDE_JAVAFILESTORAGE ICertificateErrorHandler CertificateErrorHandler { get; } diff --git a/src/Kp2aBusinessLogic/Io/WebDavFileStorage.cs b/src/Kp2aBusinessLogic/Io/WebDavFileStorage.cs index b6cd20b4..6cce6119 100644 --- a/src/Kp2aBusinessLogic/Io/WebDavFileStorage.cs +++ b/src/Kp2aBusinessLogic/Io/WebDavFileStorage.cs @@ -9,14 +9,14 @@ using Android.OS; using Android.Runtime; using Android.Views; using Android.Widget; -#if !NoNet +#if !NoNet && !EXCLUDE_JAVAFILESTORAGE using Keepass2android.Javafilestorage; #endif using KeePassLib.Serialization; namespace keepass2android.Io { -#if !NoNet +#if !NoNet && !EXCLUDE_JAVAFILESTORAGE public class WebDavFileStorage: JavaFileStorage { public WebDavFileStorage(IKp2aApp app) : base(new Keepass2android.Javafilestorage.WebDavStorage(app.CertificateErrorHandler), app) diff --git a/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj b/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj index f4e85690..65e40673 100644 --- a/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj +++ b/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj @@ -22,7 +22,7 @@ full false bin\Debug\ - DEBUG;EXCLUDE_TWOFISH;_EXCLUDE_KEYBOARD;_EXCLUDE_FILECHOOSER;_EXCLUDE_JAVAFILESTORAGE;INCLUDE_KEYTRANSFORM + DEBUG;_EXCLUDE_TWOFISH;_EXCLUDE_KEYBOARD;_EXCLUDE_FILECHOOSER;_EXCLUDE_JAVAFILESTORAGE;INCLUDE_KEYTRANSFORM prompt 4 None @@ -129,6 +129,10 @@ + + {3c0f7fe5-639f-4422-a087-8b26cf862d1b} + AndroidFileChooserBinding + {48574278-4779-4b3a-a9e4-9cf1bc285d0b} JavaFileStorageBindings @@ -141,6 +145,10 @@ {70D3844A-D9FA-4A64-B205-A84C6A822196} KP2AKdbLibraryBinding + + {2db80c77-d46f-4970-b967-e9ffa9b2ac2e} + PCloudBindings + {5CF675A5-9BEE-4720-BED9-D5BF14A2EBF9} TwofishCipher @@ -154,118 +162,118 @@ - 27.1.3 + 31.3.1 - 1.17.0 + 1.21.0 1.0.0-preview.1 - 4.4.0 + 4.8.2 - 1.1.1.1 + 1.1.1.3 - 1.1.1.1 + 1.1.1.3 - 1.1.1.1 + 1.1.1.3 - 1.1.1.1 + 1.1.1.3 - 1.1.1.1 + 1.1.1.3 - 1.1.1.1 + 1.1.1.3 - 1.1.1.1 + 1.1.1.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 - 28.0.0.1 + 28.0.0.3 diff --git a/src/Kp2aBusinessLogic/Resources/Resource.Designer.cs b/src/Kp2aBusinessLogic/Resources/Resource.Designer.cs index dae0869c..9e3265e3 100644 --- a/src/Kp2aBusinessLogic/Resources/Resource.Designer.cs +++ b/src/Kp2aBusinessLogic/Resources/Resource.Designer.cs @@ -179,718 +179,826 @@ namespace keepass2android public static int activityChooserViewStyle = 2130837537; // aapt resource value: 0x7F020022 - public static int alertDialogButtonGroupStyle = 2130837538; + public static int afc_badge_file_provider_localfile = 2130837538; // aapt resource value: 0x7F020023 - public static int alertDialogCenterButtons = 2130837539; + public static int afc_button_bar_button_style = 2130837539; // aapt resource value: 0x7F020024 - public static int alertDialogStyle = 2130837540; + public static int afc_button_bar_style = 2130837540; // aapt resource value: 0x7F020025 - public static int alertDialogTheme = 2130837541; - - // aapt resource value: 0x7F020026 - public static int allowStacking = 2130837542; + public static int afc_button_home = 2130837541; // aapt resource value: 0x7F020027 - public static int alpha = 2130837543; + public static int afc_color_listview_cache_hint = 2130837543; + + // aapt resource value: 0x7F020026 + public static int afc_color_list_group_view_background = 2130837542; // aapt resource value: 0x7F020028 - public static int alphabeticModifiers = 2130837544; + public static int afc_ic_button_sort_by_date_asc = 2130837544; // aapt resource value: 0x7F020029 - public static int arrowHeadLength = 2130837545; + public static int afc_ic_button_sort_by_date_desc = 2130837545; // aapt resource value: 0x7F02002A - public static int arrowShaftLength = 2130837546; + public static int afc_ic_button_sort_by_name_asc = 2130837546; // aapt resource value: 0x7F02002B - public static int autoCompleteTextViewStyle = 2130837547; + public static int afc_ic_button_sort_by_name_desc = 2130837547; // aapt resource value: 0x7F02002C - public static int autoSizeMaxTextSize = 2130837548; + public static int afc_ic_button_sort_by_size_asc = 2130837548; // aapt resource value: 0x7F02002D - public static int autoSizeMinTextSize = 2130837549; + public static int afc_ic_button_sort_by_size_desc = 2130837549; // aapt resource value: 0x7F02002E - public static int autoSizePresetSizes = 2130837550; + public static int afc_ic_menu_gridview = 2130837550; // aapt resource value: 0x7F02002F - public static int autoSizeStepGranularity = 2130837551; + public static int afc_ic_menu_home = 2130837551; // aapt resource value: 0x7F020030 - public static int autoSizeTextType = 2130837552; + public static int afc_ic_menu_listview = 2130837552; // aapt resource value: 0x7F020031 - public static int background = 2130837553; + public static int afc_ic_menu_sort_by_date_asc = 2130837553; // aapt resource value: 0x7F020032 - public static int backgroundSplit = 2130837554; + public static int afc_ic_menu_sort_by_date_desc = 2130837554; // aapt resource value: 0x7F020033 - public static int backgroundStacked = 2130837555; + public static int afc_ic_menu_sort_by_name_asc = 2130837555; // aapt resource value: 0x7F020034 - public static int backgroundTint = 2130837556; + public static int afc_ic_menu_sort_by_name_desc = 2130837556; // aapt resource value: 0x7F020035 - public static int backgroundTintMode = 2130837557; + public static int afc_ic_menu_sort_by_size_asc = 2130837557; // aapt resource value: 0x7F020036 - public static int barLength = 2130837558; + public static int afc_ic_menu_sort_by_size_desc = 2130837558; // aapt resource value: 0x7F020037 - public static int borderlessButtonStyle = 2130837559; + public static int afc_ic_widget_search_view_action_clear = 2130837559; // aapt resource value: 0x7F020038 - public static int buttonBarButtonStyle = 2130837560; + public static int afc_ic_widget_search_view_action_search = 2130837560; // aapt resource value: 0x7F020039 - public static int buttonBarNegativeButtonStyle = 2130837561; + public static int afc_selector_action_navi_left_foreground = 2130837561; // aapt resource value: 0x7F02003A - public static int buttonBarNeutralButtonStyle = 2130837562; + public static int afc_selector_action_navi_right_foreground = 2130837562; // aapt resource value: 0x7F02003B - public static int buttonBarPositiveButtonStyle = 2130837563; + public static int afc_selector_button_location = 2130837563; // aapt resource value: 0x7F02003C - public static int buttonBarStyle = 2130837564; + public static int afc_selector_button_ok_saveas = 2130837564; // aapt resource value: 0x7F02003D - public static int buttonGravity = 2130837565; + public static int afc_selector_image_button = 2130837565; // aapt resource value: 0x7F02003E - public static int buttonIconDimen = 2130837566; + public static int afc_selector_main_button_navi_left = 2130837566; // aapt resource value: 0x7F02003F - public static int buttonPanelSideLayout = 2130837567; + public static int afc_selector_main_button_navi_right = 2130837567; // aapt resource value: 0x7F020040 - public static int buttonStyle = 2130837568; + public static int afc_theme_dialog = 2130837568; // aapt resource value: 0x7F020041 - public static int buttonStyleSmall = 2130837569; + public static int alertDialogButtonGroupStyle = 2130837569; // aapt resource value: 0x7F020042 - public static int buttonTint = 2130837570; + public static int alertDialogCenterButtons = 2130837570; // aapt resource value: 0x7F020043 - public static int buttonTintMode = 2130837571; + public static int alertDialogStyle = 2130837571; // aapt resource value: 0x7F020044 - public static int checkboxStyle = 2130837572; + public static int alertDialogTheme = 2130837572; // aapt resource value: 0x7F020045 - public static int checkedTextViewStyle = 2130837573; + public static int allowStacking = 2130837573; // aapt resource value: 0x7F020046 - public static int closeIcon = 2130837574; + public static int alpha = 2130837574; // aapt resource value: 0x7F020047 - public static int closeItemLayout = 2130837575; + public static int alphabeticModifiers = 2130837575; // aapt resource value: 0x7F020048 - public static int collapseContentDescription = 2130837576; + public static int arrowHeadLength = 2130837576; // aapt resource value: 0x7F020049 - public static int collapseIcon = 2130837577; + public static int arrowShaftLength = 2130837577; // aapt resource value: 0x7F02004A - public static int color = 2130837578; + public static int autoCompleteTextViewStyle = 2130837578; // aapt resource value: 0x7F02004B - public static int colorAccent = 2130837579; + public static int autoSizeMaxTextSize = 2130837579; // aapt resource value: 0x7F02004C - public static int colorBackgroundFloating = 2130837580; + public static int autoSizeMinTextSize = 2130837580; // aapt resource value: 0x7F02004D - public static int colorButtonNormal = 2130837581; + public static int autoSizePresetSizes = 2130837581; // aapt resource value: 0x7F02004E - public static int colorControlActivated = 2130837582; + public static int autoSizeStepGranularity = 2130837582; // aapt resource value: 0x7F02004F - public static int colorControlHighlight = 2130837583; + public static int autoSizeTextType = 2130837583; // aapt resource value: 0x7F020050 - public static int colorControlNormal = 2130837584; + public static int background = 2130837584; // aapt resource value: 0x7F020051 - public static int colorError = 2130837585; + public static int backgroundSplit = 2130837585; // aapt resource value: 0x7F020052 - public static int colorPrimary = 2130837586; + public static int backgroundStacked = 2130837586; // aapt resource value: 0x7F020053 - public static int colorPrimaryDark = 2130837587; + public static int backgroundTint = 2130837587; // aapt resource value: 0x7F020054 - public static int colorSwitchThumbNormal = 2130837588; + public static int backgroundTintMode = 2130837588; // aapt resource value: 0x7F020055 - public static int commitIcon = 2130837589; + public static int barLength = 2130837589; // aapt resource value: 0x7F020056 - public static int contentDescription = 2130837590; + public static int borderlessButtonStyle = 2130837590; // aapt resource value: 0x7F020057 - public static int contentInsetEnd = 2130837591; + public static int buttonBarButtonStyle = 2130837591; // aapt resource value: 0x7F020058 - public static int contentInsetEndWithActions = 2130837592; + public static int buttonBarNegativeButtonStyle = 2130837592; // aapt resource value: 0x7F020059 - public static int contentInsetLeft = 2130837593; + public static int buttonBarNeutralButtonStyle = 2130837593; // aapt resource value: 0x7F02005A - public static int contentInsetRight = 2130837594; + public static int buttonBarPositiveButtonStyle = 2130837594; // aapt resource value: 0x7F02005B - public static int contentInsetStart = 2130837595; + public static int buttonBarStyle = 2130837595; // aapt resource value: 0x7F02005C - public static int contentInsetStartWithNavigation = 2130837596; + public static int buttonGravity = 2130837596; // aapt resource value: 0x7F02005D - public static int controlBackground = 2130837597; + public static int buttonIconDimen = 2130837597; // aapt resource value: 0x7F02005E - public static int coordinatorLayoutStyle = 2130837598; + public static int buttonPanelSideLayout = 2130837598; // aapt resource value: 0x7F02005F - public static int customNavigationLayout = 2130837599; + public static int buttonStyle = 2130837599; // aapt resource value: 0x7F020060 - public static int defaultQueryHint = 2130837600; + public static int buttonStyleSmall = 2130837600; // aapt resource value: 0x7F020061 - public static int dialogCornerRadius = 2130837601; + public static int buttonTint = 2130837601; // aapt resource value: 0x7F020062 - public static int dialogPreferredPadding = 2130837602; + public static int buttonTintMode = 2130837602; // aapt resource value: 0x7F020063 - public static int dialogTheme = 2130837603; + public static int checkboxStyle = 2130837603; // aapt resource value: 0x7F020064 - public static int displayOptions = 2130837604; + public static int checkedTextViewStyle = 2130837604; // aapt resource value: 0x7F020065 - public static int divider = 2130837605; + public static int closable = 2130837605; // aapt resource value: 0x7F020066 - public static int dividerHorizontal = 2130837606; + public static int closeIcon = 2130837606; // aapt resource value: 0x7F020067 - public static int dividerPadding = 2130837607; + public static int closeItemLayout = 2130837607; // aapt resource value: 0x7F020068 - public static int dividerVertical = 2130837608; + public static int collapseContentDescription = 2130837608; // aapt resource value: 0x7F020069 - public static int drawableSize = 2130837609; + public static int collapseIcon = 2130837609; // aapt resource value: 0x7F02006A - public static int drawerArrowStyle = 2130837610; - - // aapt resource value: 0x7F02006C - public static int dropdownListPreferredItemHeight = 2130837612; + public static int color = 2130837610; // aapt resource value: 0x7F02006B - public static int dropDownListViewStyle = 2130837611; + public static int colorAccent = 2130837611; + + // aapt resource value: 0x7F02006C + public static int colorBackgroundFloating = 2130837612; // aapt resource value: 0x7F02006D - public static int editTextBackground = 2130837613; + public static int colorButtonNormal = 2130837613; // aapt resource value: 0x7F02006E - public static int editTextColor = 2130837614; + public static int colorControlActivated = 2130837614; // aapt resource value: 0x7F02006F - public static int editTextStyle = 2130837615; + public static int colorControlHighlight = 2130837615; // aapt resource value: 0x7F020070 - public static int elevation = 2130837616; + public static int colorControlNormal = 2130837616; // aapt resource value: 0x7F020071 - public static int expandActivityOverflowButtonDrawable = 2130837617; + public static int colorError = 2130837617; // aapt resource value: 0x7F020072 - public static int firstBaselineToTopHeight = 2130837618; + public static int colorPrimary = 2130837618; // aapt resource value: 0x7F020073 - public static int font = 2130837619; + public static int colorPrimaryDark = 2130837619; // aapt resource value: 0x7F020074 - public static int fontFamily = 2130837620; + public static int colorSwitchThumbNormal = 2130837620; // aapt resource value: 0x7F020075 - public static int fontProviderAuthority = 2130837621; + public static int commitIcon = 2130837621; // aapt resource value: 0x7F020076 - public static int fontProviderCerts = 2130837622; + public static int contentDescription = 2130837622; // aapt resource value: 0x7F020077 - public static int fontProviderFetchStrategy = 2130837623; + public static int contentInsetEnd = 2130837623; // aapt resource value: 0x7F020078 - public static int fontProviderFetchTimeout = 2130837624; + public static int contentInsetEndWithActions = 2130837624; // aapt resource value: 0x7F020079 - public static int fontProviderPackage = 2130837625; + public static int contentInsetLeft = 2130837625; // aapt resource value: 0x7F02007A - public static int fontProviderQuery = 2130837626; + public static int contentInsetRight = 2130837626; // aapt resource value: 0x7F02007B - public static int fontStyle = 2130837627; + public static int contentInsetStart = 2130837627; // aapt resource value: 0x7F02007C - public static int fontVariationSettings = 2130837628; + public static int contentInsetStartWithNavigation = 2130837628; // aapt resource value: 0x7F02007D - public static int fontWeight = 2130837629; + public static int controlBackground = 2130837629; // aapt resource value: 0x7F02007E - public static int gapBetweenBars = 2130837630; + public static int coordinatorLayoutStyle = 2130837630; // aapt resource value: 0x7F02007F - public static int goIcon = 2130837631; + public static int customNavigationLayout = 2130837631; // aapt resource value: 0x7F020080 - public static int height = 2130837632; + public static int defaultQueryHint = 2130837632; // aapt resource value: 0x7F020081 - public static int hideOnContentScroll = 2130837633; + public static int delayTimeSubmission = 2130837633; // aapt resource value: 0x7F020082 - public static int homeAsUpIndicator = 2130837634; + public static int dialogCornerRadius = 2130837634; // aapt resource value: 0x7F020083 - public static int homeLayout = 2130837635; + public static int dialogPreferredPadding = 2130837635; // aapt resource value: 0x7F020084 - public static int icon = 2130837636; - - // aapt resource value: 0x7F020087 - public static int iconifiedByDefault = 2130837639; + public static int dialogTheme = 2130837636; // aapt resource value: 0x7F020085 - public static int iconTint = 2130837637; + public static int displayOptions = 2130837637; // aapt resource value: 0x7F020086 - public static int iconTintMode = 2130837638; + public static int divider = 2130837638; + + // aapt resource value: 0x7F020087 + public static int dividerHorizontal = 2130837639; // aapt resource value: 0x7F020088 - public static int imageButtonStyle = 2130837640; + public static int dividerPadding = 2130837640; // aapt resource value: 0x7F020089 - public static int indeterminateProgressStyle = 2130837641; + public static int dividerVertical = 2130837641; // aapt resource value: 0x7F02008A - public static int initialActivityCount = 2130837642; + public static int drawableSize = 2130837642; // aapt resource value: 0x7F02008B - public static int isLightTheme = 2130837643; - - // aapt resource value: 0x7F02008C - public static int itemPadding = 2130837644; + public static int drawerArrowStyle = 2130837643; // aapt resource value: 0x7F02008D - public static int keylines = 2130837645; + public static int dropdownListPreferredItemHeight = 2130837645; + + // aapt resource value: 0x7F02008C + public static int dropDownListViewStyle = 2130837644; // aapt resource value: 0x7F02008E - public static int lastBaselineToBottomHeight = 2130837646; + public static int editTextBackground = 2130837646; // aapt resource value: 0x7F02008F - public static int layout = 2130837647; + public static int editTextColor = 2130837647; // aapt resource value: 0x7F020090 - public static int layout_anchor = 2130837648; + public static int editTextStyle = 2130837648; // aapt resource value: 0x7F020091 - public static int layout_anchorGravity = 2130837649; + public static int elevation = 2130837649; // aapt resource value: 0x7F020092 - public static int layout_behavior = 2130837650; + public static int enabled = 2130837650; // aapt resource value: 0x7F020093 - public static int layout_dodgeInsetEdges = 2130837651; + public static int expandActivityOverflowButtonDrawable = 2130837651; // aapt resource value: 0x7F020094 - public static int layout_insetEdge = 2130837652; + public static int firstBaselineToTopHeight = 2130837652; // aapt resource value: 0x7F020095 - public static int layout_keyline = 2130837653; + public static int font = 2130837653; // aapt resource value: 0x7F020096 - public static int lineHeight = 2130837654; + public static int fontFamily = 2130837654; // aapt resource value: 0x7F020097 - public static int listChoiceBackgroundIndicator = 2130837655; + public static int fontProviderAuthority = 2130837655; // aapt resource value: 0x7F020098 - public static int listDividerAlertDialog = 2130837656; + public static int fontProviderCerts = 2130837656; // aapt resource value: 0x7F020099 - public static int listItemLayout = 2130837657; + public static int fontProviderFetchStrategy = 2130837657; // aapt resource value: 0x7F02009A - public static int listLayout = 2130837658; + public static int fontProviderFetchTimeout = 2130837658; // aapt resource value: 0x7F02009B - public static int listMenuViewStyle = 2130837659; + public static int fontProviderPackage = 2130837659; // aapt resource value: 0x7F02009C - public static int listPopupWindowStyle = 2130837660; + public static int fontProviderQuery = 2130837660; // aapt resource value: 0x7F02009D - public static int listPreferredItemHeight = 2130837661; + public static int fontStyle = 2130837661; // aapt resource value: 0x7F02009E - public static int listPreferredItemHeightLarge = 2130837662; + public static int fontVariationSettings = 2130837662; // aapt resource value: 0x7F02009F - public static int listPreferredItemHeightSmall = 2130837663; + public static int fontWeight = 2130837663; // aapt resource value: 0x7F0200A0 - public static int listPreferredItemPaddingLeft = 2130837664; + public static int gapBetweenBars = 2130837664; // aapt resource value: 0x7F0200A1 - public static int listPreferredItemPaddingRight = 2130837665; + public static int goIcon = 2130837665; // aapt resource value: 0x7F0200A2 - public static int logo = 2130837666; + public static int height = 2130837666; // aapt resource value: 0x7F0200A3 - public static int logoDescription = 2130837667; + public static int hideOnContentScroll = 2130837667; // aapt resource value: 0x7F0200A4 - public static int maxButtonHeight = 2130837668; + public static int hint = 2130837668; // aapt resource value: 0x7F0200A5 - public static int measureWithLargestChild = 2130837669; + public static int homeAsUpIndicator = 2130837669; // aapt resource value: 0x7F0200A6 - public static int multiChoiceItemLayout = 2130837670; + public static int homeLayout = 2130837670; // aapt resource value: 0x7F0200A7 - public static int navigationContentDescription = 2130837671; - - // aapt resource value: 0x7F0200A8 - public static int navigationIcon = 2130837672; - - // aapt resource value: 0x7F0200A9 - public static int navigationMode = 2130837673; + public static int icon = 2130837671; // aapt resource value: 0x7F0200AA - public static int numericModifiers = 2130837674; + public static int iconified = 2130837674; // aapt resource value: 0x7F0200AB - public static int overlapAnchor = 2130837675; + public static int iconifiedByDefault = 2130837675; + + // aapt resource value: 0x7F0200A8 + public static int iconTint = 2130837672; + + // aapt resource value: 0x7F0200A9 + public static int iconTintMode = 2130837673; // aapt resource value: 0x7F0200AC - public static int paddingBottomNoButtons = 2130837676; + public static int imageButtonStyle = 2130837676; // aapt resource value: 0x7F0200AD - public static int paddingEnd = 2130837677; + public static int indeterminateProgressStyle = 2130837677; // aapt resource value: 0x7F0200AE - public static int paddingStart = 2130837678; + public static int initialActivityCount = 2130837678; // aapt resource value: 0x7F0200AF - public static int paddingTopNoTitle = 2130837679; + public static int isLightTheme = 2130837679; // aapt resource value: 0x7F0200B0 - public static int panelBackground = 2130837680; + public static int itemPadding = 2130837680; // aapt resource value: 0x7F0200B1 - public static int panelMenuListTheme = 2130837681; + public static int keylines = 2130837681; // aapt resource value: 0x7F0200B2 - public static int panelMenuListWidth = 2130837682; + public static int lastBaselineToBottomHeight = 2130837682; // aapt resource value: 0x7F0200B3 - public static int popupMenuStyle = 2130837683; + public static int layout = 2130837683; // aapt resource value: 0x7F0200B4 - public static int popupTheme = 2130837684; + public static int layout_anchor = 2130837684; // aapt resource value: 0x7F0200B5 - public static int popupWindowStyle = 2130837685; + public static int layout_anchorGravity = 2130837685; // aapt resource value: 0x7F0200B6 - public static int preserveIconSpacing = 2130837686; + public static int layout_behavior = 2130837686; // aapt resource value: 0x7F0200B7 - public static int progressBarPadding = 2130837687; + public static int layout_dodgeInsetEdges = 2130837687; // aapt resource value: 0x7F0200B8 - public static int progressBarStyle = 2130837688; + public static int layout_insetEdge = 2130837688; // aapt resource value: 0x7F0200B9 - public static int queryBackground = 2130837689; + public static int layout_keyline = 2130837689; // aapt resource value: 0x7F0200BA - public static int queryHint = 2130837690; + public static int lineHeight = 2130837690; // aapt resource value: 0x7F0200BB - public static int radioButtonStyle = 2130837691; + public static int listChoiceBackgroundIndicator = 2130837691; // aapt resource value: 0x7F0200BC - public static int ratingBarStyle = 2130837692; + public static int listDividerAlertDialog = 2130837692; // aapt resource value: 0x7F0200BD - public static int ratingBarStyleIndicator = 2130837693; + public static int listItemLayout = 2130837693; // aapt resource value: 0x7F0200BE - public static int ratingBarStyleSmall = 2130837694; + public static int listLayout = 2130837694; // aapt resource value: 0x7F0200BF - public static int searchHintIcon = 2130837695; + public static int listMenuViewStyle = 2130837695; // aapt resource value: 0x7F0200C0 - public static int searchIcon = 2130837696; + public static int listPopupWindowStyle = 2130837696; // aapt resource value: 0x7F0200C1 - public static int searchViewStyle = 2130837697; + public static int listPreferredItemHeight = 2130837697; // aapt resource value: 0x7F0200C2 - public static int seekBarStyle = 2130837698; + public static int listPreferredItemHeightLarge = 2130837698; // aapt resource value: 0x7F0200C3 - public static int selectableItemBackground = 2130837699; + public static int listPreferredItemHeightSmall = 2130837699; // aapt resource value: 0x7F0200C4 - public static int selectableItemBackgroundBorderless = 2130837700; + public static int listPreferredItemPaddingLeft = 2130837700; // aapt resource value: 0x7F0200C5 - public static int showAsAction = 2130837701; + public static int listPreferredItemPaddingRight = 2130837701; // aapt resource value: 0x7F0200C6 - public static int showDividers = 2130837702; + public static int logo = 2130837702; // aapt resource value: 0x7F0200C7 - public static int showText = 2130837703; + public static int logoDescription = 2130837703; // aapt resource value: 0x7F0200C8 - public static int showTitle = 2130837704; + public static int maxButtonHeight = 2130837704; // aapt resource value: 0x7F0200C9 - public static int singleChoiceItemLayout = 2130837705; + public static int measureWithLargestChild = 2130837705; // aapt resource value: 0x7F0200CA - public static int spinBars = 2130837706; + public static int multiChoiceItemLayout = 2130837706; // aapt resource value: 0x7F0200CB - public static int spinnerDropDownItemStyle = 2130837707; + public static int navigationContentDescription = 2130837707; // aapt resource value: 0x7F0200CC - public static int spinnerStyle = 2130837708; + public static int navigationIcon = 2130837708; // aapt resource value: 0x7F0200CD - public static int splitTrack = 2130837709; + public static int navigationMode = 2130837709; // aapt resource value: 0x7F0200CE - public static int srcCompat = 2130837710; + public static int numericModifiers = 2130837710; // aapt resource value: 0x7F0200CF - public static int state_above_anchor = 2130837711; + public static int overlapAnchor = 2130837711; // aapt resource value: 0x7F0200D0 - public static int statusBarBackground = 2130837712; + public static int paddingBottomNoButtons = 2130837712; // aapt resource value: 0x7F0200D1 - public static int subMenuArrow = 2130837713; + public static int paddingEnd = 2130837713; // aapt resource value: 0x7F0200D2 - public static int submitBackground = 2130837714; + public static int paddingStart = 2130837714; // aapt resource value: 0x7F0200D3 - public static int subtitle = 2130837715; + public static int paddingTopNoTitle = 2130837715; // aapt resource value: 0x7F0200D4 - public static int subtitleTextAppearance = 2130837716; + public static int panelBackground = 2130837716; // aapt resource value: 0x7F0200D5 - public static int subtitleTextColor = 2130837717; + public static int panelMenuListTheme = 2130837717; // aapt resource value: 0x7F0200D6 - public static int subtitleTextStyle = 2130837718; + public static int panelMenuListWidth = 2130837718; // aapt resource value: 0x7F0200D7 - public static int suggestionRowLayout = 2130837719; + public static int popupMenuStyle = 2130837719; // aapt resource value: 0x7F0200D8 - public static int switchMinWidth = 2130837720; + public static int popupTheme = 2130837720; // aapt resource value: 0x7F0200D9 - public static int switchPadding = 2130837721; + public static int popupWindowStyle = 2130837721; // aapt resource value: 0x7F0200DA - public static int switchStyle = 2130837722; + public static int preserveIconSpacing = 2130837722; // aapt resource value: 0x7F0200DB - public static int switchTextAppearance = 2130837723; + public static int progressBarPadding = 2130837723; // aapt resource value: 0x7F0200DC - public static int textAllCaps = 2130837724; + public static int progressBarStyle = 2130837724; // aapt resource value: 0x7F0200DD - public static int textAppearanceLargePopupMenu = 2130837725; + public static int queryBackground = 2130837725; // aapt resource value: 0x7F0200DE - public static int textAppearanceListItem = 2130837726; + public static int queryHint = 2130837726; // aapt resource value: 0x7F0200DF - public static int textAppearanceListItemSecondary = 2130837727; + public static int radioButtonStyle = 2130837727; // aapt resource value: 0x7F0200E0 - public static int textAppearanceListItemSmall = 2130837728; + public static int ratingBarStyle = 2130837728; // aapt resource value: 0x7F0200E1 - public static int textAppearancePopupMenuHeader = 2130837729; + public static int ratingBarStyleIndicator = 2130837729; // aapt resource value: 0x7F0200E2 - public static int textAppearanceSearchResultSubtitle = 2130837730; + public static int ratingBarStyleSmall = 2130837730; // aapt resource value: 0x7F0200E3 - public static int textAppearanceSearchResultTitle = 2130837731; + public static int searchHintIcon = 2130837731; // aapt resource value: 0x7F0200E4 - public static int textAppearanceSmallPopupMenu = 2130837732; + public static int searchIcon = 2130837732; // aapt resource value: 0x7F0200E5 - public static int textColorAlertDialogListItem = 2130837733; + public static int searchViewStyle = 2130837733; // aapt resource value: 0x7F0200E6 - public static int textColorSearchUrl = 2130837734; + public static int seekBarStyle = 2130837734; // aapt resource value: 0x7F0200E7 - public static int theme = 2130837735; + public static int selectableItemBackground = 2130837735; // aapt resource value: 0x7F0200E8 - public static int thickness = 2130837736; + public static int selectableItemBackgroundBorderless = 2130837736; // aapt resource value: 0x7F0200E9 - public static int thumbTextPadding = 2130837737; + public static int showAsAction = 2130837737; // aapt resource value: 0x7F0200EA - public static int thumbTint = 2130837738; + public static int showDividers = 2130837738; // aapt resource value: 0x7F0200EB - public static int thumbTintMode = 2130837739; + public static int showText = 2130837739; // aapt resource value: 0x7F0200EC - public static int tickMark = 2130837740; + public static int showTitle = 2130837740; // aapt resource value: 0x7F0200ED - public static int tickMarkTint = 2130837741; + public static int singleChoiceItemLayout = 2130837741; // aapt resource value: 0x7F0200EE - public static int tickMarkTintMode = 2130837742; + public static int spinBars = 2130837742; // aapt resource value: 0x7F0200EF - public static int tint = 2130837743; + public static int spinnerDropDownItemStyle = 2130837743; // aapt resource value: 0x7F0200F0 - public static int tintMode = 2130837744; + public static int spinnerStyle = 2130837744; // aapt resource value: 0x7F0200F1 - public static int title = 2130837745; + public static int splitTrack = 2130837745; // aapt resource value: 0x7F0200F2 - public static int titleMargin = 2130837746; + public static int srcCompat = 2130837746; // aapt resource value: 0x7F0200F3 - public static int titleMarginBottom = 2130837747; + public static int state_above_anchor = 2130837747; // aapt resource value: 0x7F0200F4 - public static int titleMarginEnd = 2130837748; - - // aapt resource value: 0x7F0200F7 - public static int titleMargins = 2130837751; + public static int statusBarBackground = 2130837748; // aapt resource value: 0x7F0200F5 - public static int titleMarginStart = 2130837749; + public static int subMenuArrow = 2130837749; // aapt resource value: 0x7F0200F6 - public static int titleMarginTop = 2130837750; + public static int submitBackground = 2130837750; + + // aapt resource value: 0x7F0200F7 + public static int subtitle = 2130837751; // aapt resource value: 0x7F0200F8 - public static int titleTextAppearance = 2130837752; + public static int subtitleTextAppearance = 2130837752; // aapt resource value: 0x7F0200F9 - public static int titleTextColor = 2130837753; + public static int subtitleTextColor = 2130837753; // aapt resource value: 0x7F0200FA - public static int titleTextStyle = 2130837754; + public static int subtitleTextStyle = 2130837754; // aapt resource value: 0x7F0200FB - public static int toolbarNavigationButtonStyle = 2130837755; + public static int suggestionRowLayout = 2130837755; // aapt resource value: 0x7F0200FC - public static int toolbarStyle = 2130837756; + public static int switchMinWidth = 2130837756; // aapt resource value: 0x7F0200FD - public static int tooltipForegroundColor = 2130837757; + public static int switchPadding = 2130837757; // aapt resource value: 0x7F0200FE - public static int tooltipFrameBackground = 2130837758; + public static int switchStyle = 2130837758; // aapt resource value: 0x7F0200FF - public static int tooltipText = 2130837759; + public static int switchTextAppearance = 2130837759; // aapt resource value: 0x7F020100 - public static int track = 2130837760; + public static int textAllCaps = 2130837760; // aapt resource value: 0x7F020101 - public static int trackTint = 2130837761; + public static int textAppearanceLargePopupMenu = 2130837761; // aapt resource value: 0x7F020102 - public static int trackTintMode = 2130837762; + public static int textAppearanceListItem = 2130837762; // aapt resource value: 0x7F020103 - public static int ttcIndex = 2130837763; + public static int textAppearanceListItemSecondary = 2130837763; // aapt resource value: 0x7F020104 - public static int viewInflaterClass = 2130837764; + public static int textAppearanceListItemSmall = 2130837764; // aapt resource value: 0x7F020105 - public static int voiceIcon = 2130837765; + public static int textAppearancePopupMenuHeader = 2130837765; // aapt resource value: 0x7F020106 - public static int windowActionBar = 2130837766; + public static int textAppearanceSearchResultSubtitle = 2130837766; // aapt resource value: 0x7F020107 - public static int windowActionBarOverlay = 2130837767; + public static int textAppearanceSearchResultTitle = 2130837767; // aapt resource value: 0x7F020108 - public static int windowActionModeOverlay = 2130837768; + public static int textAppearanceSmallPopupMenu = 2130837768; // aapt resource value: 0x7F020109 - public static int windowFixedHeightMajor = 2130837769; + public static int textColorAlertDialogListItem = 2130837769; // aapt resource value: 0x7F02010A - public static int windowFixedHeightMinor = 2130837770; + public static int textColorSearchUrl = 2130837770; // aapt resource value: 0x7F02010B - public static int windowFixedWidthMajor = 2130837771; + public static int theme = 2130837771; // aapt resource value: 0x7F02010C - public static int windowFixedWidthMinor = 2130837772; + public static int thickness = 2130837772; // aapt resource value: 0x7F02010D - public static int windowMinWidthMajor = 2130837773; + public static int thumbTextPadding = 2130837773; // aapt resource value: 0x7F02010E - public static int windowMinWidthMinor = 2130837774; + public static int thumbTint = 2130837774; // aapt resource value: 0x7F02010F - public static int windowNoTitle = 2130837775; + public static int thumbTintMode = 2130837775; + + // aapt resource value: 0x7F020110 + public static int tickMark = 2130837776; + + // aapt resource value: 0x7F020111 + public static int tickMarkTint = 2130837777; + + // aapt resource value: 0x7F020112 + public static int tickMarkTintMode = 2130837778; + + // aapt resource value: 0x7F020113 + public static int tint = 2130837779; + + // aapt resource value: 0x7F020114 + public static int tintMode = 2130837780; + + // aapt resource value: 0x7F020115 + public static int title = 2130837781; + + // aapt resource value: 0x7F020116 + public static int titleMargin = 2130837782; + + // aapt resource value: 0x7F020117 + public static int titleMarginBottom = 2130837783; + + // aapt resource value: 0x7F020118 + public static int titleMarginEnd = 2130837784; + + // aapt resource value: 0x7F02011B + public static int titleMargins = 2130837787; + + // aapt resource value: 0x7F020119 + public static int titleMarginStart = 2130837785; + + // aapt resource value: 0x7F02011A + public static int titleMarginTop = 2130837786; + + // aapt resource value: 0x7F02011C + public static int titleTextAppearance = 2130837788; + + // aapt resource value: 0x7F02011D + public static int titleTextColor = 2130837789; + + // aapt resource value: 0x7F02011E + public static int titleTextStyle = 2130837790; + + // aapt resource value: 0x7F02011F + public static int toolbarNavigationButtonStyle = 2130837791; + + // aapt resource value: 0x7F020120 + public static int toolbarStyle = 2130837792; + + // aapt resource value: 0x7F020121 + public static int tooltipForegroundColor = 2130837793; + + // aapt resource value: 0x7F020122 + public static int tooltipFrameBackground = 2130837794; + + // aapt resource value: 0x7F020123 + public static int tooltipText = 2130837795; + + // aapt resource value: 0x7F020124 + public static int track = 2130837796; + + // aapt resource value: 0x7F020125 + public static int trackTint = 2130837797; + + // aapt resource value: 0x7F020126 + public static int trackTintMode = 2130837798; + + // aapt resource value: 0x7F020127 + public static int ttcIndex = 2130837799; + + // aapt resource value: 0x7F020128 + public static int viewInflaterClass = 2130837800; + + // aapt resource value: 0x7F020129 + public static int voiceIcon = 2130837801; + + // aapt resource value: 0x7F02012A + public static int windowActionBar = 2130837802; + + // aapt resource value: 0x7F02012B + public static int windowActionBarOverlay = 2130837803; + + // aapt resource value: 0x7F02012C + public static int windowActionModeOverlay = 2130837804; + + // aapt resource value: 0x7F02012D + public static int windowFixedHeightMajor = 2130837805; + + // aapt resource value: 0x7F02012E + public static int windowFixedHeightMinor = 2130837806; + + // aapt resource value: 0x7F02012F + public static int windowFixedWidthMajor = 2130837807; + + // aapt resource value: 0x7F020130 + public static int windowFixedWidthMinor = 2130837808; + + // aapt resource value: 0x7F020131 + public static int windowMinWidthMajor = 2130837809; + + // aapt resource value: 0x7F020132 + public static int windowMinWidthMinor = 2130837810; + + // aapt resource value: 0x7F020133 + public static int windowNoTitle = 2130837811; static Attribute() { @@ -914,6 +1022,21 @@ namespace keepass2android // aapt resource value: 0x7F030002 public static int abc_config_actionMenuItemAllCaps = 2130903042; + // aapt resource value: 0x7F030003 + public static int afc_is_large_screen = 2130903043; + + // aapt resource value: 0x7F030004 + public static int afc_pkey_display_remember_last_location_def = 2130903044; + + // aapt resource value: 0x7F030005 + public static int afc_pkey_display_show_time_for_old_days_def = 2130903045; + + // aapt resource value: 0x7F030006 + public static int afc_pkey_display_show_time_for_old_days_this_year_def = 2130903046; + + // aapt resource value: 0x7F030007 + public static int afc_pkey_display_sort_ascending_def = 2130903047; + static Boolean() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); @@ -1006,193 +1129,208 @@ namespace keepass2android public static int accent_material_light = 2130968601; // aapt resource value: 0x7F04001A - public static int background_floating_material_dark = 2130968602; - - // aapt resource value: 0x7F04001B - public static int background_floating_material_light = 2130968603; - - // aapt resource value: 0x7F04001C - public static int background_material_dark = 2130968604; + public static int afc_border_line_dark = 2130968602; // aapt resource value: 0x7F04001D - public static int background_material_light = 2130968605; + public static int afc_listview_cache_hint_dark = 2130968605; // aapt resource value: 0x7F04001E - public static int bright_foreground_disabled_material_dark = 2130968606; + public static int afc_listview_cache_hint_light = 2130968606; + + // aapt resource value: 0x7F04001B + public static int afc_list_group_view_background_dark = 2130968603; + + // aapt resource value: 0x7F04001C + public static int afc_list_group_view_background_light = 2130968604; // aapt resource value: 0x7F04001F - public static int bright_foreground_disabled_material_light = 2130968607; + public static int background_floating_material_dark = 2130968607; // aapt resource value: 0x7F040020 - public static int bright_foreground_inverse_material_dark = 2130968608; + public static int background_floating_material_light = 2130968608; // aapt resource value: 0x7F040021 - public static int bright_foreground_inverse_material_light = 2130968609; + public static int background_material_dark = 2130968609; // aapt resource value: 0x7F040022 - public static int bright_foreground_material_dark = 2130968610; + public static int background_material_light = 2130968610; // aapt resource value: 0x7F040023 - public static int bright_foreground_material_light = 2130968611; + public static int bright_foreground_disabled_material_dark = 2130968611; // aapt resource value: 0x7F040024 - public static int browser_actions_bg_grey = 2130968612; + public static int bright_foreground_disabled_material_light = 2130968612; // aapt resource value: 0x7F040025 - public static int browser_actions_divider_color = 2130968613; + public static int bright_foreground_inverse_material_dark = 2130968613; // aapt resource value: 0x7F040026 - public static int browser_actions_text_color = 2130968614; + public static int bright_foreground_inverse_material_light = 2130968614; // aapt resource value: 0x7F040027 - public static int browser_actions_title_color = 2130968615; + public static int bright_foreground_material_dark = 2130968615; // aapt resource value: 0x7F040028 - public static int button_material_dark = 2130968616; + public static int bright_foreground_material_light = 2130968616; // aapt resource value: 0x7F040029 - public static int button_material_light = 2130968617; + public static int browser_actions_bg_grey = 2130968617; // aapt resource value: 0x7F04002A - public static int dim_foreground_disabled_material_dark = 2130968618; + public static int browser_actions_divider_color = 2130968618; // aapt resource value: 0x7F04002B - public static int dim_foreground_disabled_material_light = 2130968619; + public static int browser_actions_text_color = 2130968619; // aapt resource value: 0x7F04002C - public static int dim_foreground_material_dark = 2130968620; + public static int browser_actions_title_color = 2130968620; // aapt resource value: 0x7F04002D - public static int dim_foreground_material_light = 2130968621; + public static int button_material_dark = 2130968621; // aapt resource value: 0x7F04002E - public static int error_color_material_dark = 2130968622; + public static int button_material_light = 2130968622; // aapt resource value: 0x7F04002F - public static int error_color_material_light = 2130968623; + public static int dim_foreground_disabled_material_dark = 2130968623; // aapt resource value: 0x7F040030 - public static int foreground_material_dark = 2130968624; + public static int dim_foreground_disabled_material_light = 2130968624; // aapt resource value: 0x7F040031 - public static int foreground_material_light = 2130968625; + public static int dim_foreground_material_dark = 2130968625; // aapt resource value: 0x7F040032 - public static int highlighted_text_material_dark = 2130968626; + public static int dim_foreground_material_light = 2130968626; // aapt resource value: 0x7F040033 - public static int highlighted_text_material_light = 2130968627; + public static int error_color_material_dark = 2130968627; // aapt resource value: 0x7F040034 - public static int material_blue_grey_800 = 2130968628; + public static int error_color_material_light = 2130968628; // aapt resource value: 0x7F040035 - public static int material_blue_grey_900 = 2130968629; + public static int foreground_material_dark = 2130968629; // aapt resource value: 0x7F040036 - public static int material_blue_grey_950 = 2130968630; + public static int foreground_material_light = 2130968630; // aapt resource value: 0x7F040037 - public static int material_deep_teal_200 = 2130968631; + public static int highlighted_text_material_dark = 2130968631; // aapt resource value: 0x7F040038 - public static int material_deep_teal_500 = 2130968632; + public static int highlighted_text_material_light = 2130968632; // aapt resource value: 0x7F040039 - public static int material_grey_100 = 2130968633; + public static int material_blue_grey_800 = 2130968633; // aapt resource value: 0x7F04003A - public static int material_grey_300 = 2130968634; + public static int material_blue_grey_900 = 2130968634; // aapt resource value: 0x7F04003B - public static int material_grey_50 = 2130968635; + public static int material_blue_grey_950 = 2130968635; // aapt resource value: 0x7F04003C - public static int material_grey_600 = 2130968636; + public static int material_deep_teal_200 = 2130968636; // aapt resource value: 0x7F04003D - public static int material_grey_800 = 2130968637; + public static int material_deep_teal_500 = 2130968637; // aapt resource value: 0x7F04003E - public static int material_grey_850 = 2130968638; + public static int material_grey_100 = 2130968638; // aapt resource value: 0x7F04003F - public static int material_grey_900 = 2130968639; + public static int material_grey_300 = 2130968639; // aapt resource value: 0x7F040040 - public static int notification_action_color_filter = 2130968640; + public static int material_grey_50 = 2130968640; // aapt resource value: 0x7F040041 - public static int notification_icon_bg_color = 2130968641; + public static int material_grey_600 = 2130968641; // aapt resource value: 0x7F040042 - public static int notification_material_background_media_default_color = 2130968642; + public static int material_grey_800 = 2130968642; // aapt resource value: 0x7F040043 - public static int primary_dark_material_dark = 2130968643; + public static int material_grey_850 = 2130968643; // aapt resource value: 0x7F040044 - public static int primary_dark_material_light = 2130968644; + public static int material_grey_900 = 2130968644; // aapt resource value: 0x7F040045 - public static int primary_material_dark = 2130968645; + public static int notification_action_color_filter = 2130968645; // aapt resource value: 0x7F040046 - public static int primary_material_light = 2130968646; + public static int notification_icon_bg_color = 2130968646; // aapt resource value: 0x7F040047 - public static int primary_text_default_material_dark = 2130968647; + public static int notification_material_background_media_default_color = 2130968647; // aapt resource value: 0x7F040048 - public static int primary_text_default_material_light = 2130968648; + public static int primary_dark_material_dark = 2130968648; // aapt resource value: 0x7F040049 - public static int primary_text_disabled_material_dark = 2130968649; + public static int primary_dark_material_light = 2130968649; // aapt resource value: 0x7F04004A - public static int primary_text_disabled_material_light = 2130968650; + public static int primary_material_dark = 2130968650; // aapt resource value: 0x7F04004B - public static int ripple_material_dark = 2130968651; + public static int primary_material_light = 2130968651; // aapt resource value: 0x7F04004C - public static int ripple_material_light = 2130968652; + public static int primary_text_default_material_dark = 2130968652; // aapt resource value: 0x7F04004D - public static int secondary_text_default_material_dark = 2130968653; + public static int primary_text_default_material_light = 2130968653; // aapt resource value: 0x7F04004E - public static int secondary_text_default_material_light = 2130968654; + public static int primary_text_disabled_material_dark = 2130968654; // aapt resource value: 0x7F04004F - public static int secondary_text_disabled_material_dark = 2130968655; + public static int primary_text_disabled_material_light = 2130968655; // aapt resource value: 0x7F040050 - public static int secondary_text_disabled_material_light = 2130968656; + public static int ripple_material_dark = 2130968656; // aapt resource value: 0x7F040051 - public static int switch_thumb_disabled_material_dark = 2130968657; + public static int ripple_material_light = 2130968657; // aapt resource value: 0x7F040052 - public static int switch_thumb_disabled_material_light = 2130968658; + public static int secondary_text_default_material_dark = 2130968658; // aapt resource value: 0x7F040053 - public static int switch_thumb_material_dark = 2130968659; + public static int secondary_text_default_material_light = 2130968659; // aapt resource value: 0x7F040054 - public static int switch_thumb_material_light = 2130968660; + public static int secondary_text_disabled_material_dark = 2130968660; // aapt resource value: 0x7F040055 - public static int switch_thumb_normal_material_dark = 2130968661; + public static int secondary_text_disabled_material_light = 2130968661; // aapt resource value: 0x7F040056 - public static int switch_thumb_normal_material_light = 2130968662; + public static int switch_thumb_disabled_material_dark = 2130968662; // aapt resource value: 0x7F040057 - public static int tooltip_background_dark = 2130968663; + public static int switch_thumb_disabled_material_light = 2130968663; // aapt resource value: 0x7F040058 - public static int tooltip_background_light = 2130968664; + public static int switch_thumb_material_dark = 2130968664; + + // aapt resource value: 0x7F040059 + public static int switch_thumb_material_light = 2130968665; + + // aapt resource value: 0x7F04005A + public static int switch_thumb_normal_material_dark = 2130968666; + + // aapt resource value: 0x7F04005B + public static int switch_thumb_normal_material_light = 2130968667; + + // aapt resource value: 0x7F04005C + public static int tooltip_background_dark = 2130968668; + + // aapt resource value: 0x7F04005D + public static int tooltip_background_light = 2130968669; static Color() { @@ -1433,139 +1571,211 @@ namespace keepass2android public static int abc_text_size_title_material_toolbar = 2131034186; // aapt resource value: 0x7F05004B - public static int browser_actions_context_menu_max_width = 2131034187; + public static int afc_10dp = 2131034187; // aapt resource value: 0x7F05004C - public static int browser_actions_context_menu_min_padding = 2131034188; + public static int afc_10sp = 2131034188; // aapt resource value: 0x7F05004D - public static int compat_button_inset_horizontal_material = 2131034189; + public static int afc_15dp = 2131034189; // aapt resource value: 0x7F05004E - public static int compat_button_inset_vertical_material = 2131034190; + public static int afc_2dp = 2131034190; // aapt resource value: 0x7F05004F - public static int compat_button_padding_horizontal_material = 2131034191; + public static int afc_2sp = 2131034191; // aapt resource value: 0x7F050050 - public static int compat_button_padding_vertical_material = 2131034192; + public static int afc_30dp = 2131034192; // aapt resource value: 0x7F050051 - public static int compat_control_corner_material = 2131034193; + public static int afc_5dp = 2131034193; // aapt resource value: 0x7F050052 - public static int compat_notification_large_icon_max_height = 2131034194; + public static int afc_5sp = 2131034194; // aapt resource value: 0x7F050053 - public static int compat_notification_large_icon_max_width = 2131034195; + public static int afc_button_location_max_width = 2131034195; // aapt resource value: 0x7F050054 - public static int disabled_alpha_material_dark = 2131034196; + public static int afc_button_location_min_width = 2131034196; // aapt resource value: 0x7F050055 - public static int disabled_alpha_material_light = 2131034197; + public static int afc_button_navigators_min_height = 2131034197; // aapt resource value: 0x7F050056 - public static int highlight_alpha_material_colored = 2131034198; + public static int afc_button_ok_saveas_size = 2131034198; // aapt resource value: 0x7F050057 - public static int highlight_alpha_material_dark = 2131034199; + public static int afc_context_menu_item_padding = 2131034199; // aapt resource value: 0x7F050058 - public static int highlight_alpha_material_light = 2131034200; + public static int afc_context_menu_item_padding_left = 2131034200; // aapt resource value: 0x7F050059 - public static int hint_alpha_material_dark = 2131034201; + public static int afc_context_menu_width = 2131034201; // aapt resource value: 0x7F05005A - public static int hint_alpha_material_light = 2131034202; + public static int afc_file_icon_size = 2131034202; // aapt resource value: 0x7F05005B - public static int hint_pressed_alpha_material_dark = 2131034203; + public static int afc_single_button_min_width = 2131034203; // aapt resource value: 0x7F05005C - public static int hint_pressed_alpha_material_light = 2131034204; + public static int afc_thumbnail_size = 2131034204; // aapt resource value: 0x7F05005D - public static int notification_action_icon_size = 2131034205; + public static int afc_viewgroup_button_locations_bottom_divider_height = 2131034205; // aapt resource value: 0x7F05005E - public static int notification_action_text_size = 2131034206; + public static int afc_widget_search_view_button_clear_size = 2131034206; // aapt resource value: 0x7F05005F - public static int notification_big_circle_margin = 2131034207; + public static int aosp_dialog_fixed_height_major = 2131034207; // aapt resource value: 0x7F050060 - public static int notification_content_margin_start = 2131034208; + public static int aosp_dialog_fixed_height_minor = 2131034208; // aapt resource value: 0x7F050061 - public static int notification_large_icon_height = 2131034209; + public static int aosp_dialog_fixed_width_major = 2131034209; // aapt resource value: 0x7F050062 - public static int notification_large_icon_width = 2131034210; + public static int aosp_dialog_fixed_width_minor = 2131034210; // aapt resource value: 0x7F050063 - public static int notification_main_column_padding_top = 2131034211; + public static int browser_actions_context_menu_max_width = 2131034211; // aapt resource value: 0x7F050064 - public static int notification_media_narrow_margin = 2131034212; + public static int browser_actions_context_menu_min_padding = 2131034212; // aapt resource value: 0x7F050065 - public static int notification_right_icon_size = 2131034213; + public static int compat_button_inset_horizontal_material = 2131034213; // aapt resource value: 0x7F050066 - public static int notification_right_side_padding_top = 2131034214; + public static int compat_button_inset_vertical_material = 2131034214; // aapt resource value: 0x7F050067 - public static int notification_small_icon_background_padding = 2131034215; + public static int compat_button_padding_horizontal_material = 2131034215; // aapt resource value: 0x7F050068 - public static int notification_small_icon_size_as_large = 2131034216; + public static int compat_button_padding_vertical_material = 2131034216; // aapt resource value: 0x7F050069 - public static int notification_subtext_size = 2131034217; + public static int compat_control_corner_material = 2131034217; // aapt resource value: 0x7F05006A - public static int notification_top_pad = 2131034218; + public static int compat_notification_large_icon_max_height = 2131034218; // aapt resource value: 0x7F05006B - public static int notification_top_pad_large_text = 2131034219; + public static int compat_notification_large_icon_max_width = 2131034219; // aapt resource value: 0x7F05006C - public static int subtitle_corner_radius = 2131034220; + public static int disabled_alpha_material_dark = 2131034220; // aapt resource value: 0x7F05006D - public static int subtitle_outline_width = 2131034221; + public static int disabled_alpha_material_light = 2131034221; // aapt resource value: 0x7F05006E - public static int subtitle_shadow_offset = 2131034222; + public static int highlight_alpha_material_colored = 2131034222; // aapt resource value: 0x7F05006F - public static int subtitle_shadow_radius = 2131034223; + public static int highlight_alpha_material_dark = 2131034223; // aapt resource value: 0x7F050070 - public static int tooltip_corner_radius = 2131034224; + public static int highlight_alpha_material_light = 2131034224; // aapt resource value: 0x7F050071 - public static int tooltip_horizontal_padding = 2131034225; + public static int hint_alpha_material_dark = 2131034225; // aapt resource value: 0x7F050072 - public static int tooltip_margin = 2131034226; + public static int hint_alpha_material_light = 2131034226; // aapt resource value: 0x7F050073 - public static int tooltip_precise_anchor_extra_offset = 2131034227; + public static int hint_pressed_alpha_material_dark = 2131034227; // aapt resource value: 0x7F050074 - public static int tooltip_precise_anchor_threshold = 2131034228; + public static int hint_pressed_alpha_material_light = 2131034228; // aapt resource value: 0x7F050075 - public static int tooltip_vertical_padding = 2131034229; + public static int notification_action_icon_size = 2131034229; // aapt resource value: 0x7F050076 - public static int tooltip_y_offset_non_touch = 2131034230; + public static int notification_action_text_size = 2131034230; // aapt resource value: 0x7F050077 - public static int tooltip_y_offset_touch = 2131034231; + public static int notification_big_circle_margin = 2131034231; + + // aapt resource value: 0x7F050078 + public static int notification_content_margin_start = 2131034232; + + // aapt resource value: 0x7F050079 + public static int notification_large_icon_height = 2131034233; + + // aapt resource value: 0x7F05007A + public static int notification_large_icon_width = 2131034234; + + // aapt resource value: 0x7F05007B + public static int notification_main_column_padding_top = 2131034235; + + // aapt resource value: 0x7F05007C + public static int notification_media_narrow_margin = 2131034236; + + // aapt resource value: 0x7F05007D + public static int notification_right_icon_size = 2131034237; + + // aapt resource value: 0x7F05007E + public static int notification_right_side_padding_top = 2131034238; + + // aapt resource value: 0x7F05007F + public static int notification_small_icon_background_padding = 2131034239; + + // aapt resource value: 0x7F050080 + public static int notification_small_icon_size_as_large = 2131034240; + + // aapt resource value: 0x7F050081 + public static int notification_subtext_size = 2131034241; + + // aapt resource value: 0x7F050082 + public static int notification_top_pad = 2131034242; + + // aapt resource value: 0x7F050083 + public static int notification_top_pad_large_text = 2131034243; + + // aapt resource value: 0x7F050084 + public static int subtitle_corner_radius = 2131034244; + + // aapt resource value: 0x7F050085 + public static int subtitle_outline_width = 2131034245; + + // aapt resource value: 0x7F050086 + public static int subtitle_shadow_offset = 2131034246; + + // aapt resource value: 0x7F050087 + public static int subtitle_shadow_radius = 2131034247; + + // aapt resource value: 0x7F050088 + public static int tooltip_corner_radius = 2131034248; + + // aapt resource value: 0x7F050089 + public static int tooltip_horizontal_padding = 2131034249; + + // aapt resource value: 0x7F05008A + public static int tooltip_margin = 2131034250; + + // aapt resource value: 0x7F05008B + public static int tooltip_precise_anchor_extra_offset = 2131034251; + + // aapt resource value: 0x7F05008C + public static int tooltip_precise_anchor_threshold = 2131034252; + + // aapt resource value: 0x7F05008D + public static int tooltip_vertical_padding = 2131034253; + + // aapt resource value: 0x7F05008E + public static int tooltip_y_offset_non_touch = 2131034254; + + // aapt resource value: 0x7F05008F + public static int tooltip_y_offset_touch = 2131034255; static Dimension() { @@ -1833,52 +2043,349 @@ namespace keepass2android public static int abc_vector_test = 2131099731; // aapt resource value: 0x7F060054 - public static int ic_launcher = 2131099732; + public static int afc_badge_file_provider_localfile_dark = 2131099732; // aapt resource value: 0x7F060055 - public static int ic_logo_green_foreground = 2131099733; + public static int afc_badge_file_provider_localfile_light = 2131099733; // aapt resource value: 0x7F060056 - public static int notification_action_background = 2131099734; + public static int afc_bookmarks_dark = 2131099734; // aapt resource value: 0x7F060057 - public static int notification_bg = 2131099735; + public static int afc_button_home_dark = 2131099735; // aapt resource value: 0x7F060058 - public static int notification_bg_low = 2131099736; + public static int afc_button_home_light = 2131099736; // aapt resource value: 0x7F060059 - public static int notification_bg_low_normal = 2131099737; + public static int afc_button_location_dark_pressed = 2131099737; // aapt resource value: 0x7F06005A - public static int notification_bg_low_pressed = 2131099738; + public static int afc_button_location_light_pressed = 2131099738; // aapt resource value: 0x7F06005B - public static int notification_bg_normal = 2131099739; + public static int afc_context_menu_item_divider = 2131099739; // aapt resource value: 0x7F06005C - public static int notification_bg_normal_pressed = 2131099740; + public static int afc_expandable_listview_group_divider = 2131099740; // aapt resource value: 0x7F06005D - public static int notification_icon_background = 2131099741; + public static int afc_file = 2131099741; // aapt resource value: 0x7F06005E - public static int notification_template_icon_bg = 2131099742; + public static int afc_file_apk = 2131099742; // aapt resource value: 0x7F06005F - public static int notification_template_icon_low_bg = 2131099743; + public static int afc_file_audio = 2131099743; // aapt resource value: 0x7F060060 - public static int notification_tile_bg = 2131099744; + public static int afc_file_compressed = 2131099744; // aapt resource value: 0x7F060061 - public static int notify_panel_notification_icon_bg = 2131099745; + public static int afc_file_image = 2131099745; // aapt resource value: 0x7F060062 - public static int tooltip_frame_dark = 2131099746; + public static int afc_file_kp2a = 2131099746; // aapt resource value: 0x7F060063 - public static int tooltip_frame_light = 2131099747; + public static int afc_file_locked_dark = 2131099747; + + // aapt resource value: 0x7F060064 + public static int afc_file_plain_text = 2131099748; + + // aapt resource value: 0x7F060065 + public static int afc_file_video = 2131099749; + + // aapt resource value: 0x7F060066 + public static int afc_folder = 2131099750; + + // aapt resource value: 0x7F060067 + public static int afc_ic_action_clear_dark = 2131099751; + + // aapt resource value: 0x7F060068 + public static int afc_ic_action_clear_light = 2131099752; + + // aapt resource value: 0x7F060069 + public static int afc_ic_action_navi_left_dark = 2131099753; + + // aapt resource value: 0x7F06006A + public static int afc_ic_action_navi_left_dark_disabled = 2131099754; + + // aapt resource value: 0x7F06006B + public static int afc_ic_action_navi_left_light = 2131099755; + + // aapt resource value: 0x7F06006C + public static int afc_ic_action_navi_left_light_disabled = 2131099756; + + // aapt resource value: 0x7F06006D + public static int afc_ic_action_navi_right_dark = 2131099757; + + // aapt resource value: 0x7F06006E + public static int afc_ic_action_navi_right_dark_disabled = 2131099758; + + // aapt resource value: 0x7F06006F + public static int afc_ic_action_navi_right_light = 2131099759; + + // aapt resource value: 0x7F060070 + public static int afc_ic_action_navi_right_light_disabled = 2131099760; + + // aapt resource value: 0x7F060071 + public static int afc_ic_action_search_dark = 2131099761; + + // aapt resource value: 0x7F060072 + public static int afc_ic_action_search_light = 2131099762; + + // aapt resource value: 0x7F060073 + public static int afc_ic_button_ok_saveas_dark = 2131099763; + + // aapt resource value: 0x7F060074 + public static int afc_ic_button_ok_saveas_dark_focused = 2131099764; + + // aapt resource value: 0x7F060075 + public static int afc_ic_button_ok_saveas_dark_pressed = 2131099765; + + // aapt resource value: 0x7F060076 + public static int afc_ic_button_ok_saveas_light = 2131099766; + + // aapt resource value: 0x7F060077 + public static int afc_ic_button_ok_saveas_light_focused = 2131099767; + + // aapt resource value: 0x7F060078 + public static int afc_ic_button_ok_saveas_light_pressed = 2131099768; + + // aapt resource value: 0x7F060079 + public static int afc_ic_menu_gridview = 2131099769; + + // aapt resource value: 0x7F06007A + public static int afc_ic_menu_gridview_dark = 2131099770; + + // aapt resource value: 0x7F06007B + public static int afc_ic_menu_gridview_light = 2131099771; + + // aapt resource value: 0x7F06007C + public static int afc_ic_menu_home = 2131099772; + + // aapt resource value: 0x7F06007D + public static int afc_ic_menu_home_dark = 2131099773; + + // aapt resource value: 0x7F06007E + public static int afc_ic_menu_home_light = 2131099774; + + // aapt resource value: 0x7F06007F + public static int afc_ic_menu_listview = 2131099775; + + // aapt resource value: 0x7F060080 + public static int afc_ic_menu_listview_dark = 2131099776; + + // aapt resource value: 0x7F060081 + public static int afc_ic_menu_listview_light = 2131099777; + + // aapt resource value: 0x7F060082 + public static int afc_ic_menu_sort_by_date_asc = 2131099778; + + // aapt resource value: 0x7F060083 + public static int afc_ic_menu_sort_by_date_asc_dark = 2131099779; + + // aapt resource value: 0x7F060084 + public static int afc_ic_menu_sort_by_date_asc_light = 2131099780; + + // aapt resource value: 0x7F060085 + public static int afc_ic_menu_sort_by_date_desc = 2131099781; + + // aapt resource value: 0x7F060086 + public static int afc_ic_menu_sort_by_date_desc_dark = 2131099782; + + // aapt resource value: 0x7F060087 + public static int afc_ic_menu_sort_by_date_desc_light = 2131099783; + + // aapt resource value: 0x7F060088 + public static int afc_ic_menu_sort_by_name_asc = 2131099784; + + // aapt resource value: 0x7F060089 + public static int afc_ic_menu_sort_by_name_asc_dark = 2131099785; + + // aapt resource value: 0x7F06008A + public static int afc_ic_menu_sort_by_name_asc_light = 2131099786; + + // aapt resource value: 0x7F06008B + public static int afc_ic_menu_sort_by_name_desc = 2131099787; + + // aapt resource value: 0x7F06008C + public static int afc_ic_menu_sort_by_name_desc_dark = 2131099788; + + // aapt resource value: 0x7F06008D + public static int afc_ic_menu_sort_by_name_desc_light = 2131099789; + + // aapt resource value: 0x7F06008E + public static int afc_ic_menu_sort_by_size_asc = 2131099790; + + // aapt resource value: 0x7F06008F + public static int afc_ic_menu_sort_by_size_asc_dark = 2131099791; + + // aapt resource value: 0x7F060090 + public static int afc_ic_menu_sort_by_size_asc_light = 2131099792; + + // aapt resource value: 0x7F060091 + public static int afc_ic_menu_sort_by_size_desc = 2131099793; + + // aapt resource value: 0x7F060092 + public static int afc_ic_menu_sort_by_size_desc_dark = 2131099794; + + // aapt resource value: 0x7F060093 + public static int afc_ic_menu_sort_by_size_desc_light = 2131099795; + + // aapt resource value: 0x7F060094 + public static int afc_image_button_dark_focused = 2131099796; + + // aapt resource value: 0x7F060095 + public static int afc_image_button_dark_pressed = 2131099797; + + // aapt resource value: 0x7F060096 + public static int afc_image_button_light_focused = 2131099798; + + // aapt resource value: 0x7F060097 + public static int afc_image_button_light_pressed = 2131099799; + + // aapt resource value: 0x7F060098 + public static int afc_main_button_navi_left_dark = 2131099800; + + // aapt resource value: 0x7F060099 + public static int afc_main_button_navi_left_disabled_dark = 2131099801; + + // aapt resource value: 0x7F06009A + public static int afc_main_button_navi_left_disabled_light = 2131099802; + + // aapt resource value: 0x7F06009B + public static int afc_main_button_navi_left_light = 2131099803; + + // aapt resource value: 0x7F06009C + public static int afc_main_button_navi_left_pressed_dark = 2131099804; + + // aapt resource value: 0x7F06009D + public static int afc_main_button_navi_left_pressed_light = 2131099805; + + // aapt resource value: 0x7F06009E + public static int afc_main_button_navi_right_dark = 2131099806; + + // aapt resource value: 0x7F06009F + public static int afc_main_button_navi_right_disabled_dark = 2131099807; + + // aapt resource value: 0x7F0600A0 + public static int afc_main_button_navi_right_disabled_light = 2131099808; + + // aapt resource value: 0x7F0600A1 + public static int afc_main_button_navi_right_light = 2131099809; + + // aapt resource value: 0x7F0600A2 + public static int afc_main_button_navi_right_pressed_dark = 2131099810; + + // aapt resource value: 0x7F0600A3 + public static int afc_main_button_navi_right_pressed_light = 2131099811; + + // aapt resource value: 0x7F0600A4 + public static int afc_selector_action_navi_left_dark_foreground = 2131099812; + + // aapt resource value: 0x7F0600A5 + public static int afc_selector_action_navi_left_light_foreground = 2131099813; + + // aapt resource value: 0x7F0600A6 + public static int afc_selector_action_navi_right_dark_foreground = 2131099814; + + // aapt resource value: 0x7F0600A7 + public static int afc_selector_action_navi_right_light_foreground = 2131099815; + + // aapt resource value: 0x7F0600A8 + public static int afc_selector_button_location_dark = 2131099816; + + // aapt resource value: 0x7F0600A9 + public static int afc_selector_button_location_light = 2131099817; + + // aapt resource value: 0x7F0600AA + public static int afc_selector_button_ok_saveas_dark = 2131099818; + + // aapt resource value: 0x7F0600AB + public static int afc_selector_button_ok_saveas_light = 2131099819; + + // aapt resource value: 0x7F0600AC + public static int afc_selector_image_button_dark = 2131099820; + + // aapt resource value: 0x7F0600AD + public static int afc_selector_image_button_light = 2131099821; + + // aapt resource value: 0x7F0600AE + public static int afc_selector_main_button_navi_left_dark = 2131099822; + + // aapt resource value: 0x7F0600AF + public static int afc_selector_main_button_navi_left_light = 2131099823; + + // aapt resource value: 0x7F0600B0 + public static int afc_selector_main_button_navi_right_dark = 2131099824; + + // aapt resource value: 0x7F0600B1 + public static int afc_selector_main_button_navi_right_light = 2131099825; + + // aapt resource value: 0x7F0600B2 + public static int afc_view_locations_divider_dark = 2131099826; + + // aapt resource value: 0x7F0600B3 + public static int aosp_background_holo_dark = 2131099827; + + // aapt resource value: 0x7F0600B4 + public static int aosp_background_holo_light = 2131099828; + + // aapt resource value: 0x7F0600B5 + public static int aosp_dialog_full_holo_dark = 2131099829; + + // aapt resource value: 0x7F0600B6 + public static int aosp_dialog_full_holo_light = 2131099830; + + // aapt resource value: 0x7F0600B7 + public static int ic_launcher = 2131099831; + + // aapt resource value: 0x7F0600B8 + public static int ic_logo_green_foreground = 2131099832; + + // aapt resource value: 0x7F0600B9 + public static int notification_action_background = 2131099833; + + // aapt resource value: 0x7F0600BA + public static int notification_bg = 2131099834; + + // aapt resource value: 0x7F0600BB + public static int notification_bg_low = 2131099835; + + // aapt resource value: 0x7F0600BC + public static int notification_bg_low_normal = 2131099836; + + // aapt resource value: 0x7F0600BD + public static int notification_bg_low_pressed = 2131099837; + + // aapt resource value: 0x7F0600BE + public static int notification_bg_normal = 2131099838; + + // aapt resource value: 0x7F0600BF + public static int notification_bg_normal_pressed = 2131099839; + + // aapt resource value: 0x7F0600C0 + public static int notification_icon_background = 2131099840; + + // aapt resource value: 0x7F0600C1 + public static int notification_template_icon_bg = 2131099841; + + // aapt resource value: 0x7F0600C2 + public static int notification_template_icon_low_bg = 2131099842; + + // aapt resource value: 0x7F0600C3 + public static int notification_tile_bg = 2131099843; + + // aapt resource value: 0x7F0600C4 + public static int notify_panel_notification_icon_bg = 2131099844; + + // aapt resource value: 0x7F0600C5 + public static int tooltip_frame_dark = 2131099845; + + // aapt resource value: 0x7F0600C6 + public static int tooltip_frame_light = 2131099846; static Drawable() { @@ -1954,373 +2461,505 @@ namespace keepass2android public static int activity_chooser_view_content = 2131165209; // aapt resource value: 0x7F07001A - public static int add = 2131165210; + public static int activity_main = 2131165210; // aapt resource value: 0x7F07001B - public static int alertTitle = 2131165211; + public static int add = 2131165211; // aapt resource value: 0x7F07001C - public static int all = 2131165212; + public static int afc_button_go_back = 2131165212; + + // aapt resource value: 0x7F07001D + public static int afc_button_go_forward = 2131165213; + + // aapt resource value: 0x7F07001E + public static int afc_button_ok = 2131165214; + + // aapt resource value: 0x7F07001F + public static int afc_button_sort_by_date_asc = 2131165215; + + // aapt resource value: 0x7F070020 + public static int afc_button_sort_by_date_desc = 2131165216; + + // aapt resource value: 0x7F070021 + public static int afc_button_sort_by_name_asc = 2131165217; + + // aapt resource value: 0x7F070022 + public static int afc_button_sort_by_name_desc = 2131165218; + + // aapt resource value: 0x7F070023 + public static int afc_button_sort_by_size_asc = 2131165219; + + // aapt resource value: 0x7F070024 + public static int afc_button_sort_by_size_desc = 2131165220; + + // aapt resource value: 0x7F070025 + public static int afc_checkbox_selection = 2131165221; + + // aapt resource value: 0x7F070026 + public static int afc_footer_view_divider = 2131165222; + + // aapt resource value: 0x7F070027 + public static int afc_fragment_files = 2131165223; + + // aapt resource value: 0x7F070028 + public static int afc_header_view_divider = 2131165224; + + // aapt resource value: 0x7F070029 + public static int afc_imageview_icon = 2131165225; + + // aapt resource value: 0x7F07002A + public static int afc_imageview_locked_symbol = 2131165226; + + // aapt resource value: 0x7F07002B + public static int afc_listview_menu = 2131165227; + + // aapt resource value: 0x7F07002C + public static int afc_menuitem_home = 2131165228; + + // aapt resource value: 0x7F07002D + public static int afc_menuitem_new_folder = 2131165229; + + // aapt resource value: 0x7F07002E + public static int afc_menuitem_sort = 2131165230; + + // aapt resource value: 0x7F07002F + public static int afc_menuitem_switch_viewmode = 2131165231; + + // aapt resource value: 0x7F070030 + public static int afc_progress_bar = 2131165232; + + // aapt resource value: 0x7F070031 + public static int afc_text1 = 2131165233; + + // aapt resource value: 0x7F070032 + public static int afc_textview = 2131165234; + + // aapt resource value: 0x7F070034 + public static int afc_textview_filename = 2131165236; + + // aapt resource value: 0x7F070033 + public static int afc_textview_file_info = 2131165235; + + // aapt resource value: 0x7F070035 + public static int afc_textview_full_dir_name = 2131165237; + + // aapt resource value: 0x7F070036 + public static int afc_textview_home = 2131165238; + + // aapt resource value: 0x7F070037 + public static int afc_textview_saveas_filename = 2131165239; + + // aapt resource value: 0x7F07003D + public static int afc_viewgroup_bookmarks = 2131165245; + + // aapt resource value: 0x7F07003E + public static int afc_viewgroup_button_locations = 2131165246; + + // aapt resource value: 0x7F07003F + public static int afc_viewgroup_files = 2131165247; + + // aapt resource value: 0x7F070040 + public static int afc_viewgroup_footer = 2131165248; + + // aapt resource value: 0x7F070041 + public static int afc_viewgroup_footer_container = 2131165249; + + // aapt resource value: 0x7F070042 + public static int afc_viewgroup_header = 2131165250; + + // aapt resource value: 0x7F070038 + public static int afc_view_files_container = 2131165240; + + // aapt resource value: 0x7F070039 + public static int afc_view_files_footer_view = 2131165241; + + // aapt resource value: 0x7F07003A + public static int afc_view_loading = 2131165242; + + // aapt resource value: 0x7F07003B + public static int afc_view_locations = 2131165243; + + // aapt resource value: 0x7F07003C + public static int afc_view_locations_container = 2131165244; + + // aapt resource value: 0x7F070043 + public static int afc_widget_search_view_button_clear = 2131165251; + + // aapt resource value: 0x7F070044 + public static int afc_widget_search_view_button_search = 2131165252; + + // aapt resource value: 0x7F070045 + public static int afc_widget_search_view_textview_search = 2131165253; + + // aapt resource value: 0x7F070046 + public static int alertTitle = 2131165254; + + // aapt resource value: 0x7F070047 + public static int all = 2131165255; // aapt resource value: 0x7F070000 public static int ALT = 2131165184; - // aapt resource value: 0x7F07001D - public static int always = 2131165213; + // aapt resource value: 0x7F070048 + public static int always = 2131165256; - // aapt resource value: 0x7F07001E - public static int async = 2131165214; + // aapt resource value: 0x7F070049 + public static int async = 2131165257; - // aapt resource value: 0x7F07001F - public static int beginning = 2131165215; + // aapt resource value: 0x7F07004A + public static int beginning = 2131165258; - // aapt resource value: 0x7F070020 - public static int blocking = 2131165216; + // aapt resource value: 0x7F07004B + public static int blocking = 2131165259; - // aapt resource value: 0x7F070021 - public static int bottom = 2131165217; + // aapt resource value: 0x7F07004C + public static int bottom = 2131165260; - // aapt resource value: 0x7F070022 - public static int browser_actions_header_text = 2131165218; + // aapt resource value: 0x7F07004D + public static int browser_actions_header_text = 2131165261; - // aapt resource value: 0x7F070025 - public static int browser_actions_menu_items = 2131165221; + // aapt resource value: 0x7F070050 + public static int browser_actions_menu_items = 2131165264; - // aapt resource value: 0x7F070023 - public static int browser_actions_menu_item_icon = 2131165219; + // aapt resource value: 0x7F07004E + public static int browser_actions_menu_item_icon = 2131165262; - // aapt resource value: 0x7F070024 - public static int browser_actions_menu_item_text = 2131165220; + // aapt resource value: 0x7F07004F + public static int browser_actions_menu_item_text = 2131165263; - // aapt resource value: 0x7F070026 - public static int browser_actions_menu_view = 2131165222; + // aapt resource value: 0x7F070051 + public static int browser_actions_menu_view = 2131165265; - // aapt resource value: 0x7F070027 - public static int buttonPanel = 2131165223; + // aapt resource value: 0x7F070052 + public static int buttonPanel = 2131165266; - // aapt resource value: 0x7F070028 - public static int cancel_action = 2131165224; + // aapt resource value: 0x7F070053 + public static int cancel_action = 2131165267; - // aapt resource value: 0x7F070029 - public static int center = 2131165225; + // aapt resource value: 0x7F070054 + public static int center = 2131165268; - // aapt resource value: 0x7F07002A - public static int center_horizontal = 2131165226; + // aapt resource value: 0x7F070055 + public static int center_horizontal = 2131165269; - // aapt resource value: 0x7F07002B - public static int center_vertical = 2131165227; + // aapt resource value: 0x7F070056 + public static int center_vertical = 2131165270; - // aapt resource value: 0x7F07002C - public static int checkbox = 2131165228; + // aapt resource value: 0x7F070057 + public static int checkbox = 2131165271; - // aapt resource value: 0x7F07002D - public static int chronometer = 2131165229; + // aapt resource value: 0x7F070058 + public static int chronometer = 2131165272; - // aapt resource value: 0x7F07002E - public static int clip_horizontal = 2131165230; + // aapt resource value: 0x7F070059 + public static int clip_horizontal = 2131165273; - // aapt resource value: 0x7F07002F - public static int clip_vertical = 2131165231; + // aapt resource value: 0x7F07005A + public static int clip_vertical = 2131165274; - // aapt resource value: 0x7F070030 - public static int collapseActionView = 2131165232; + // aapt resource value: 0x7F07005B + public static int collapseActionView = 2131165275; - // aapt resource value: 0x7F070031 - public static int content = 2131165233; + // aapt resource value: 0x7F07005C + public static int content = 2131165276; - // aapt resource value: 0x7F070032 - public static int contentPanel = 2131165234; + // aapt resource value: 0x7F07005D + public static int contentPanel = 2131165277; // aapt resource value: 0x7F070001 public static int CTRL = 2131165185; - // aapt resource value: 0x7F070033 - public static int custom = 2131165235; + // aapt resource value: 0x7F07005E + public static int custom = 2131165278; - // aapt resource value: 0x7F070034 - public static int customPanel = 2131165236; + // aapt resource value: 0x7F07005F + public static int customPanel = 2131165279; - // aapt resource value: 0x7F070035 - public static int decor_content_parent = 2131165237; + // aapt resource value: 0x7F070060 + public static int decor_content_parent = 2131165280; - // aapt resource value: 0x7F070036 - public static int default_activity_button = 2131165238; + // aapt resource value: 0x7F070061 + public static int default_activity_button = 2131165281; - // aapt resource value: 0x7F070037 - public static int disableHome = 2131165239; + // aapt resource value: 0x7F070062 + public static int disableHome = 2131165282; - // aapt resource value: 0x7F070038 - public static int edit_query = 2131165240; + // aapt resource value: 0x7F070063 + public static int edit_query = 2131165283; - // aapt resource value: 0x7F070039 - public static int end = 2131165241; + // aapt resource value: 0x7F070064 + public static int end = 2131165284; - // aapt resource value: 0x7F07003A - public static int end_padder = 2131165242; + // aapt resource value: 0x7F070065 + public static int end_padder = 2131165285; - // aapt resource value: 0x7F07003C - public static int expanded_menu = 2131165244; + // aapt resource value: 0x7F070067 + public static int expanded_menu = 2131165287; - // aapt resource value: 0x7F07003B - public static int expand_activities_button = 2131165243; + // aapt resource value: 0x7F070066 + public static int expand_activities_button = 2131165286; - // aapt resource value: 0x7F07003D - public static int fill = 2131165245; + // aapt resource value: 0x7F070068 + public static int fill = 2131165288; - // aapt resource value: 0x7F07003E - public static int fill_horizontal = 2131165246; + // aapt resource value: 0x7F070069 + public static int fill_horizontal = 2131165289; - // aapt resource value: 0x7F07003F - public static int fill_vertical = 2131165247; + // aapt resource value: 0x7F07006A + public static int fill_vertical = 2131165290; - // aapt resource value: 0x7F070040 - public static int forever = 2131165248; + // aapt resource value: 0x7F07006B + public static int forever = 2131165291; // aapt resource value: 0x7F070002 public static int FUNCTION = 2131165186; - // aapt resource value: 0x7F070041 - public static int group_divider = 2131165249; + // aapt resource value: 0x7F07006C + public static int group_divider = 2131165292; - // aapt resource value: 0x7F070042 - public static int home = 2131165250; + // aapt resource value: 0x7F07006D + public static int home = 2131165293; - // aapt resource value: 0x7F070043 - public static int homeAsUp = 2131165251; + // aapt resource value: 0x7F07006E + public static int homeAsUp = 2131165294; - // aapt resource value: 0x7F070044 - public static int icon = 2131165252; + // aapt resource value: 0x7F07006F + public static int icon = 2131165295; - // aapt resource value: 0x7F070045 - public static int icon_group = 2131165253; + // aapt resource value: 0x7F070070 + public static int icon_group = 2131165296; - // aapt resource value: 0x7F070046 - public static int ifRoom = 2131165254; + // aapt resource value: 0x7F070071 + public static int ifRoom = 2131165297; - // aapt resource value: 0x7F070047 - public static int image = 2131165255; + // aapt resource value: 0x7F070072 + public static int image = 2131165298; - // aapt resource value: 0x7F070048 - public static int info = 2131165256; + // aapt resource value: 0x7F070073 + public static int info = 2131165299; - // aapt resource value: 0x7F070049 - public static int italic = 2131165257; + // aapt resource value: 0x7F070074 + public static int italic = 2131165300; - // aapt resource value: 0x7F07004A - public static int left = 2131165258; + // aapt resource value: 0x7F070075 + public static int left = 2131165301; - // aapt resource value: 0x7F07004B - public static int line1 = 2131165259; + // aapt resource value: 0x7F070076 + public static int line1 = 2131165302; - // aapt resource value: 0x7F07004C - public static int line3 = 2131165260; + // aapt resource value: 0x7F070077 + public static int line3 = 2131165303; - // aapt resource value: 0x7F07004D - public static int listMode = 2131165261; + // aapt resource value: 0x7F070078 + public static int listMode = 2131165304; - // aapt resource value: 0x7F07004E - public static int list_item = 2131165262; + // aapt resource value: 0x7F070079 + public static int list_item = 2131165305; - // aapt resource value: 0x7F07004F - public static int media_actions = 2131165263; + // aapt resource value: 0x7F07007A + public static int media_actions = 2131165306; - // aapt resource value: 0x7F070050 - public static int message = 2131165264; + // aapt resource value: 0x7F07007B + public static int message = 2131165307; // aapt resource value: 0x7F070003 public static int META = 2131165187; - // aapt resource value: 0x7F070051 - public static int middle = 2131165265; + // aapt resource value: 0x7F07007C + public static int middle = 2131165308; - // aapt resource value: 0x7F070052 - public static int multiply = 2131165266; + // aapt resource value: 0x7F07007D + public static int multiply = 2131165309; - // aapt resource value: 0x7F070053 - public static int never = 2131165267; + // aapt resource value: 0x7F07007E + public static int never = 2131165310; - // aapt resource value: 0x7F070054 - public static int none = 2131165268; + // aapt resource value: 0x7F07007F + public static int none = 2131165311; - // aapt resource value: 0x7F070055 - public static int normal = 2131165269; + // aapt resource value: 0x7F070080 + public static int normal = 2131165312; - // aapt resource value: 0x7F070056 - public static int notification_background = 2131165270; + // aapt resource value: 0x7F070081 + public static int notification_background = 2131165313; - // aapt resource value: 0x7F070057 - public static int notification_main_column = 2131165271; + // aapt resource value: 0x7F070082 + public static int notification_main_column = 2131165314; - // aapt resource value: 0x7F070058 - public static int notification_main_column_container = 2131165272; + // aapt resource value: 0x7F070083 + public static int notification_main_column_container = 2131165315; - // aapt resource value: 0x7F070059 - public static int parentPanel = 2131165273; + // aapt resource value: 0x7F070084 + public static int parentPanel = 2131165316; - // aapt resource value: 0x7F07005A - public static int progress_circular = 2131165274; + // aapt resource value: 0x7F070085 + public static int progress_circular = 2131165317; - // aapt resource value: 0x7F07005B - public static int progress_horizontal = 2131165275; + // aapt resource value: 0x7F070086 + public static int progress_horizontal = 2131165318; - // aapt resource value: 0x7F07005C - public static int radio = 2131165276; + // aapt resource value: 0x7F070087 + public static int radio = 2131165319; - // aapt resource value: 0x7F07005D - public static int right = 2131165277; + // aapt resource value: 0x7F070088 + public static int right = 2131165320; - // aapt resource value: 0x7F07005E - public static int right_icon = 2131165278; + // aapt resource value: 0x7F070089 + public static int right_icon = 2131165321; - // aapt resource value: 0x7F07005F - public static int right_side = 2131165279; + // aapt resource value: 0x7F07008A + public static int right_side = 2131165322; - // aapt resource value: 0x7F070060 - public static int screen = 2131165280; + // aapt resource value: 0x7F07008B + public static int screen = 2131165323; - // aapt resource value: 0x7F070061 - public static int scrollIndicatorDown = 2131165281; + // aapt resource value: 0x7F07008C + public static int scrollIndicatorDown = 2131165324; - // aapt resource value: 0x7F070062 - public static int scrollIndicatorUp = 2131165282; + // aapt resource value: 0x7F07008D + public static int scrollIndicatorUp = 2131165325; - // aapt resource value: 0x7F070063 - public static int scrollView = 2131165283; + // aapt resource value: 0x7F07008E + public static int scrollView = 2131165326; - // aapt resource value: 0x7F070064 - public static int search_badge = 2131165284; + // aapt resource value: 0x7F07008F + public static int search_badge = 2131165327; - // aapt resource value: 0x7F070065 - public static int search_bar = 2131165285; + // aapt resource value: 0x7F070090 + public static int search_bar = 2131165328; - // aapt resource value: 0x7F070066 - public static int search_button = 2131165286; + // aapt resource value: 0x7F070091 + public static int search_button = 2131165329; - // aapt resource value: 0x7F070067 - public static int search_close_btn = 2131165287; + // aapt resource value: 0x7F070092 + public static int search_close_btn = 2131165330; - // aapt resource value: 0x7F070068 - public static int search_edit_frame = 2131165288; + // aapt resource value: 0x7F070093 + public static int search_edit_frame = 2131165331; - // aapt resource value: 0x7F070069 - public static int search_go_btn = 2131165289; + // aapt resource value: 0x7F070094 + public static int search_go_btn = 2131165332; - // aapt resource value: 0x7F07006A - public static int search_mag_icon = 2131165290; + // aapt resource value: 0x7F070095 + public static int search_mag_icon = 2131165333; - // aapt resource value: 0x7F07006B - public static int search_plate = 2131165291; + // aapt resource value: 0x7F070096 + public static int search_plate = 2131165334; - // aapt resource value: 0x7F07006C - public static int search_src_text = 2131165292; + // aapt resource value: 0x7F070097 + public static int search_src_text = 2131165335; - // aapt resource value: 0x7F07006D - public static int search_voice_btn = 2131165293; + // aapt resource value: 0x7F070098 + public static int search_voice_btn = 2131165336; - // aapt resource value: 0x7F07006E - public static int select_dialog_listview = 2131165294; + // aapt resource value: 0x7F070099 + public static int select_dialog_listview = 2131165337; // aapt resource value: 0x7F070004 public static int SHIFT = 2131165188; - // aapt resource value: 0x7F07006F - public static int shortcut = 2131165295; + // aapt resource value: 0x7F07009A + public static int shortcut = 2131165338; - // aapt resource value: 0x7F070070 - public static int showCustom = 2131165296; + // aapt resource value: 0x7F07009B + public static int showCustom = 2131165339; - // aapt resource value: 0x7F070071 - public static int showHome = 2131165297; + // aapt resource value: 0x7F07009C + public static int showHome = 2131165340; - // aapt resource value: 0x7F070072 - public static int showTitle = 2131165298; + // aapt resource value: 0x7F07009D + public static int showTitle = 2131165341; - // aapt resource value: 0x7F070073 - public static int spacer = 2131165299; + // aapt resource value: 0x7F07009E + public static int spacer = 2131165342; - // aapt resource value: 0x7F070074 - public static int split_action_bar = 2131165300; + // aapt resource value: 0x7F07009F + public static int split_action_bar = 2131165343; - // aapt resource value: 0x7F070075 - public static int src_atop = 2131165301; + // aapt resource value: 0x7F0700A0 + public static int src_atop = 2131165344; - // aapt resource value: 0x7F070076 - public static int src_in = 2131165302; + // aapt resource value: 0x7F0700A1 + public static int src_in = 2131165345; - // aapt resource value: 0x7F070077 - public static int src_over = 2131165303; + // aapt resource value: 0x7F0700A2 + public static int src_over = 2131165346; - // aapt resource value: 0x7F070078 - public static int start = 2131165304; + // aapt resource value: 0x7F0700A3 + public static int start = 2131165347; - // aapt resource value: 0x7F070079 - public static int status_bar_latest_event_content = 2131165305; + // aapt resource value: 0x7F0700A4 + public static int status_bar_latest_event_content = 2131165348; - // aapt resource value: 0x7F07007A - public static int submenuarrow = 2131165306; + // aapt resource value: 0x7F0700A5 + public static int submenuarrow = 2131165349; - // aapt resource value: 0x7F07007B - public static int submit_area = 2131165307; + // aapt resource value: 0x7F0700A6 + public static int submit_area = 2131165350; // aapt resource value: 0x7F070005 public static int SYM = 2131165189; - // aapt resource value: 0x7F07007C - public static int tabMode = 2131165308; + // aapt resource value: 0x7F0700A7 + public static int tabMode = 2131165351; - // aapt resource value: 0x7F07007D - public static int tag_transition_group = 2131165309; + // aapt resource value: 0x7F0700A8 + public static int tag_transition_group = 2131165352; - // aapt resource value: 0x7F07007E - public static int tag_unhandled_key_event_manager = 2131165310; + // aapt resource value: 0x7F0700A9 + public static int tag_unhandled_key_event_manager = 2131165353; - // aapt resource value: 0x7F07007F - public static int tag_unhandled_key_listeners = 2131165311; + // aapt resource value: 0x7F0700AA + public static int tag_unhandled_key_listeners = 2131165354; - // aapt resource value: 0x7F070080 - public static int text = 2131165312; + // aapt resource value: 0x7F0700AB + public static int text = 2131165355; - // aapt resource value: 0x7F070081 - public static int text2 = 2131165313; + // aapt resource value: 0x7F0700AC + public static int text2 = 2131165356; - // aapt resource value: 0x7F070082 - public static int textSpacerNoButtons = 2131165314; + // aapt resource value: 0x7F0700AD + public static int textSpacerNoButtons = 2131165357; - // aapt resource value: 0x7F070083 - public static int textSpacerNoTitle = 2131165315; + // aapt resource value: 0x7F0700AE + public static int textSpacerNoTitle = 2131165358; - // aapt resource value: 0x7F070084 - public static int time = 2131165316; + // aapt resource value: 0x7F0700AF + public static int time = 2131165359; - // aapt resource value: 0x7F070085 - public static int title = 2131165317; + // aapt resource value: 0x7F0700B0 + public static int title = 2131165360; - // aapt resource value: 0x7F070086 - public static int titleDividerNoCustom = 2131165318; + // aapt resource value: 0x7F0700B1 + public static int titleDividerNoCustom = 2131165361; - // aapt resource value: 0x7F070087 - public static int title_template = 2131165319; + // aapt resource value: 0x7F0700B2 + public static int title_template = 2131165362; - // aapt resource value: 0x7F070088 - public static int top = 2131165320; + // aapt resource value: 0x7F0700B3 + public static int top = 2131165363; - // aapt resource value: 0x7F070089 - public static int topPanel = 2131165321; + // aapt resource value: 0x7F0700B4 + public static int topPanel = 2131165364; - // aapt resource value: 0x7F07008A - public static int uniform = 2131165322; + // aapt resource value: 0x7F0700B5 + public static int uniform = 2131165365; - // aapt resource value: 0x7F07008B - public static int up = 2131165323; + // aapt resource value: 0x7F0700B6 + public static int up = 2131165366; - // aapt resource value: 0x7F07008C - public static int useLogo = 2131165324; + // aapt resource value: 0x7F0700B7 + public static int useLogo = 2131165367; - // aapt resource value: 0x7F07008D - public static int withText = 2131165325; + // aapt resource value: 0x7F0700B8 + public static int webView = 2131165368; - // aapt resource value: 0x7F07008E - public static int wrap_content = 2131165326; + // aapt resource value: 0x7F0700B9 + public static int withText = 2131165369; + + // aapt resource value: 0x7F0700BA + public static int wrap_content = 2131165370; static Id() { @@ -2342,13 +2981,25 @@ namespace keepass2android public static int abc_config_activityShortDur = 2131230721; // aapt resource value: 0x7F080002 - public static int cancel_button_image_alpha = 2131230722; + public static int afc_afc_search_view_delay_time_submission = 2131230722; // aapt resource value: 0x7F080003 - public static int config_tooltipAnimTime = 2131230723; + public static int afc_lib_version_code = 2131230723; // aapt resource value: 0x7F080004 - public static int status_bar_notification_info_maxnum = 2131230724; + public static int afc_pkey_display_sort_type_def = 2131230724; + + // aapt resource value: 0x7F080005 + public static int afc_pkey_display_view_type_def = 2131230725; + + // aapt resource value: 0x7F080006 + public static int cancel_button_image_alpha = 2131230726; + + // aapt resource value: 0x7F080007 + public static int config_tooltipAnimTime = 2131230727; + + // aapt resource value: 0x7F080008 + public static int status_bar_notification_info_maxnum = 2131230728; static Integer() { @@ -2448,67 +3099,112 @@ namespace keepass2android public static int abc_tooltip = 2131296283; // aapt resource value: 0x7F09001C - public static int browser_actions_context_menu_page = 2131296284; + public static int activity_pcloud_authentication = 2131296284; // aapt resource value: 0x7F09001D - public static int browser_actions_context_menu_row = 2131296285; + public static int afc_activity_filechooser = 2131296285; // aapt resource value: 0x7F09001E - public static int notification_action = 2131296286; + public static int afc_button_location = 2131296286; // aapt resource value: 0x7F09001F - public static int notification_action_tombstone = 2131296287; + public static int afc_context_menu_tiem = 2131296287; // aapt resource value: 0x7F090020 - public static int notification_media_action = 2131296288; + public static int afc_context_menu_view = 2131296288; // aapt resource value: 0x7F090021 - public static int notification_media_cancel_action = 2131296289; + public static int afc_file_item = 2131296289; // aapt resource value: 0x7F090022 - public static int notification_template_big_media = 2131296290; + public static int afc_fragment_files = 2131296290; // aapt resource value: 0x7F090023 - public static int notification_template_big_media_custom = 2131296291; + public static int afc_fragment_files_large = 2131296291; // aapt resource value: 0x7F090024 - public static int notification_template_big_media_narrow = 2131296292; + public static int afc_gridview_files = 2131296292; // aapt resource value: 0x7F090025 - public static int notification_template_big_media_narrow_custom = 2131296293; + public static int afc_listview_files = 2131296293; // aapt resource value: 0x7F090026 - public static int notification_template_custom_big = 2131296294; + public static int afc_settings_sort_view = 2131296294; // aapt resource value: 0x7F090027 - public static int notification_template_icon_group = 2131296295; + public static int afc_simple_text_input_view = 2131296295; // aapt resource value: 0x7F090028 - public static int notification_template_lines_media = 2131296296; + public static int afc_view_loading = 2131296296; // aapt resource value: 0x7F090029 - public static int notification_template_media = 2131296297; + public static int afc_view_locations_divider = 2131296297; // aapt resource value: 0x7F09002A - public static int notification_template_media_custom = 2131296298; + public static int afc_widget_search_view = 2131296298; // aapt resource value: 0x7F09002B - public static int notification_template_part_chronometer = 2131296299; + public static int browser_actions_context_menu_page = 2131296299; // aapt resource value: 0x7F09002C - public static int notification_template_part_time = 2131296300; + public static int browser_actions_context_menu_row = 2131296300; // aapt resource value: 0x7F09002D - public static int select_dialog_item_material = 2131296301; + public static int notification_action = 2131296301; // aapt resource value: 0x7F09002E - public static int select_dialog_multichoice_material = 2131296302; + public static int notification_action_tombstone = 2131296302; // aapt resource value: 0x7F09002F - public static int select_dialog_singlechoice_material = 2131296303; + public static int notification_media_action = 2131296303; // aapt resource value: 0x7F090030 - public static int support_simple_spinner_dropdown_item = 2131296304; + public static int notification_media_cancel_action = 2131296304; + + // aapt resource value: 0x7F090031 + public static int notification_template_big_media = 2131296305; + + // aapt resource value: 0x7F090032 + public static int notification_template_big_media_custom = 2131296306; + + // aapt resource value: 0x7F090033 + public static int notification_template_big_media_narrow = 2131296307; + + // aapt resource value: 0x7F090034 + public static int notification_template_big_media_narrow_custom = 2131296308; + + // aapt resource value: 0x7F090035 + public static int notification_template_custom_big = 2131296309; + + // aapt resource value: 0x7F090036 + public static int notification_template_icon_group = 2131296310; + + // aapt resource value: 0x7F090037 + public static int notification_template_lines_media = 2131296311; + + // aapt resource value: 0x7F090038 + public static int notification_template_media = 2131296312; + + // aapt resource value: 0x7F090039 + public static int notification_template_media_custom = 2131296313; + + // aapt resource value: 0x7F09003A + public static int notification_template_part_chronometer = 2131296314; + + // aapt resource value: 0x7F09003B + public static int notification_template_part_time = 2131296315; + + // aapt resource value: 0x7F09003C + public static int select_dialog_item_material = 2131296316; + + // aapt resource value: 0x7F09003D + public static int select_dialog_multichoice_material = 2131296317; + + // aapt resource value: 0x7F09003E + public static int select_dialog_singlechoice_material = 2131296318; + + // aapt resource value: 0x7F09003F + public static int support_simple_spinner_dropdown_item = 2131296319; static Layout() { @@ -2520,137 +3216,358 @@ namespace keepass2android } } + public partial class Menu + { + + // aapt resource value: 0x7F0A0000 + public static int afc_fragment_files = 2131361792; + + static Menu() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Menu() + { + } + } + + public partial class Plurals + { + + // aapt resource value: 0x7F0B0000 + public static int afc_title_choose_directories = 2131427328; + + // aapt resource value: 0x7F0B0001 + public static int afc_title_choose_files = 2131427329; + + // aapt resource value: 0x7F0B0002 + public static int afc_title_choose_files_directories = 2131427330; + + static Plurals() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Plurals() + { + } + } + public partial class String { - // aapt resource value: 0x7F0A0001 - public static int abc_action_bar_home_description = 2131361793; + // aapt resource value: 0x7F0C0001 + public static int abc_action_bar_home_description = 2131492865; - // aapt resource value: 0x7F0A0002 - public static int abc_action_bar_up_description = 2131361794; + // aapt resource value: 0x7F0C0002 + public static int abc_action_bar_up_description = 2131492866; - // aapt resource value: 0x7F0A0003 - public static int abc_action_menu_overflow_description = 2131361795; + // aapt resource value: 0x7F0C0003 + public static int abc_action_menu_overflow_description = 2131492867; - // aapt resource value: 0x7F0A0004 - public static int abc_action_mode_done = 2131361796; + // aapt resource value: 0x7F0C0004 + public static int abc_action_mode_done = 2131492868; - // aapt resource value: 0x7F0A0006 - public static int abc_activitychooserview_choose_application = 2131361798; + // aapt resource value: 0x7F0C0006 + public static int abc_activitychooserview_choose_application = 2131492870; - // aapt resource value: 0x7F0A0005 - public static int abc_activity_chooser_view_see_all = 2131361797; + // aapt resource value: 0x7F0C0005 + public static int abc_activity_chooser_view_see_all = 2131492869; - // aapt resource value: 0x7F0A0007 - public static int abc_capital_off = 2131361799; + // aapt resource value: 0x7F0C0007 + public static int abc_capital_off = 2131492871; - // aapt resource value: 0x7F0A0008 - public static int abc_capital_on = 2131361800; + // aapt resource value: 0x7F0C0008 + public static int abc_capital_on = 2131492872; - // aapt resource value: 0x7F0A0009 - public static int abc_font_family_body_1_material = 2131361801; + // aapt resource value: 0x7F0C0009 + public static int abc_font_family_body_1_material = 2131492873; - // aapt resource value: 0x7F0A000A - public static int abc_font_family_body_2_material = 2131361802; + // aapt resource value: 0x7F0C000A + public static int abc_font_family_body_2_material = 2131492874; - // aapt resource value: 0x7F0A000B - public static int abc_font_family_button_material = 2131361803; + // aapt resource value: 0x7F0C000B + public static int abc_font_family_button_material = 2131492875; - // aapt resource value: 0x7F0A000C - public static int abc_font_family_caption_material = 2131361804; + // aapt resource value: 0x7F0C000C + public static int abc_font_family_caption_material = 2131492876; - // aapt resource value: 0x7F0A000D - public static int abc_font_family_display_1_material = 2131361805; + // aapt resource value: 0x7F0C000D + public static int abc_font_family_display_1_material = 2131492877; - // aapt resource value: 0x7F0A000E - public static int abc_font_family_display_2_material = 2131361806; + // aapt resource value: 0x7F0C000E + public static int abc_font_family_display_2_material = 2131492878; - // aapt resource value: 0x7F0A000F - public static int abc_font_family_display_3_material = 2131361807; + // aapt resource value: 0x7F0C000F + public static int abc_font_family_display_3_material = 2131492879; - // aapt resource value: 0x7F0A0010 - public static int abc_font_family_display_4_material = 2131361808; + // aapt resource value: 0x7F0C0010 + public static int abc_font_family_display_4_material = 2131492880; - // aapt resource value: 0x7F0A0011 - public static int abc_font_family_headline_material = 2131361809; + // aapt resource value: 0x7F0C0011 + public static int abc_font_family_headline_material = 2131492881; - // aapt resource value: 0x7F0A0012 - public static int abc_font_family_menu_material = 2131361810; + // aapt resource value: 0x7F0C0012 + public static int abc_font_family_menu_material = 2131492882; - // aapt resource value: 0x7F0A0013 - public static int abc_font_family_subhead_material = 2131361811; + // aapt resource value: 0x7F0C0013 + public static int abc_font_family_subhead_material = 2131492883; - // aapt resource value: 0x7F0A0014 - public static int abc_font_family_title_material = 2131361812; + // aapt resource value: 0x7F0C0014 + public static int abc_font_family_title_material = 2131492884; - // aapt resource value: 0x7F0A0015 - public static int abc_menu_alt_shortcut_label = 2131361813; + // aapt resource value: 0x7F0C0015 + public static int abc_menu_alt_shortcut_label = 2131492885; - // aapt resource value: 0x7F0A0016 - public static int abc_menu_ctrl_shortcut_label = 2131361814; + // aapt resource value: 0x7F0C0016 + public static int abc_menu_ctrl_shortcut_label = 2131492886; - // aapt resource value: 0x7F0A0017 - public static int abc_menu_delete_shortcut_label = 2131361815; + // aapt resource value: 0x7F0C0017 + public static int abc_menu_delete_shortcut_label = 2131492887; - // aapt resource value: 0x7F0A0018 - public static int abc_menu_enter_shortcut_label = 2131361816; + // aapt resource value: 0x7F0C0018 + public static int abc_menu_enter_shortcut_label = 2131492888; - // aapt resource value: 0x7F0A0019 - public static int abc_menu_function_shortcut_label = 2131361817; + // aapt resource value: 0x7F0C0019 + public static int abc_menu_function_shortcut_label = 2131492889; - // aapt resource value: 0x7F0A001A - public static int abc_menu_meta_shortcut_label = 2131361818; + // aapt resource value: 0x7F0C001A + public static int abc_menu_meta_shortcut_label = 2131492890; - // aapt resource value: 0x7F0A001B - public static int abc_menu_shift_shortcut_label = 2131361819; + // aapt resource value: 0x7F0C001B + public static int abc_menu_shift_shortcut_label = 2131492891; - // aapt resource value: 0x7F0A001C - public static int abc_menu_space_shortcut_label = 2131361820; + // aapt resource value: 0x7F0C001C + public static int abc_menu_space_shortcut_label = 2131492892; - // aapt resource value: 0x7F0A001D - public static int abc_menu_sym_shortcut_label = 2131361821; + // aapt resource value: 0x7F0C001D + public static int abc_menu_sym_shortcut_label = 2131492893; - // aapt resource value: 0x7F0A001E - public static int abc_prepend_shortcut_label = 2131361822; + // aapt resource value: 0x7F0C001E + public static int abc_prepend_shortcut_label = 2131492894; - // aapt resource value: 0x7F0A0020 - public static int abc_searchview_description_clear = 2131361824; + // aapt resource value: 0x7F0C0020 + public static int abc_searchview_description_clear = 2131492896; - // aapt resource value: 0x7F0A0021 - public static int abc_searchview_description_query = 2131361825; + // aapt resource value: 0x7F0C0021 + public static int abc_searchview_description_query = 2131492897; - // aapt resource value: 0x7F0A0022 - public static int abc_searchview_description_search = 2131361826; + // aapt resource value: 0x7F0C0022 + public static int abc_searchview_description_search = 2131492898; - // aapt resource value: 0x7F0A0023 - public static int abc_searchview_description_submit = 2131361827; + // aapt resource value: 0x7F0C0023 + public static int abc_searchview_description_submit = 2131492899; - // aapt resource value: 0x7F0A0024 - public static int abc_searchview_description_voice = 2131361828; + // aapt resource value: 0x7F0C0024 + public static int abc_searchview_description_voice = 2131492900; - // aapt resource value: 0x7F0A001F - public static int abc_search_hint = 2131361823; + // aapt resource value: 0x7F0C001F + public static int abc_search_hint = 2131492895; - // aapt resource value: 0x7F0A0025 - public static int abc_shareactionprovider_share_with = 2131361829; + // aapt resource value: 0x7F0C0025 + public static int abc_shareactionprovider_share_with = 2131492901; - // aapt resource value: 0x7F0A0026 - public static int abc_shareactionprovider_share_with_application = 2131361830; + // aapt resource value: 0x7F0C0026 + public static int abc_shareactionprovider_share_with_application = 2131492902; - // aapt resource value: 0x7F0A0027 - public static int abc_toolbar_collapse_description = 2131361831; + // aapt resource value: 0x7F0C0027 + public static int abc_toolbar_collapse_description = 2131492903; - // aapt resource value: 0x7F0A0000 - public static int ApplicationName = 2131361792; + // aapt resource value: 0x7F0C0028 + public static int afc_bullet = 2131492904; - // aapt resource value: 0x7F0A0028 - public static int library_name = 2131361832; + // aapt resource value: 0x7F0C0029 + public static int afc_cmd_advanced_selection_all = 2131492905; - // aapt resource value: 0x7F0A0029 - public static int search_menu_title = 2131361833; + // aapt resource value: 0x7F0C002A + public static int afc_cmd_advanced_selection_invert = 2131492906; - // aapt resource value: 0x7F0A002A - public static int status_bar_notification_info_overflow = 2131361834; + // aapt resource value: 0x7F0C002B + public static int afc_cmd_advanced_selection_none = 2131492907; + + // aapt resource value: 0x7F0C002C + public static int afc_cmd_grid_view = 2131492908; + + // aapt resource value: 0x7F0C002D + public static int afc_cmd_home = 2131492909; + + // aapt resource value: 0x7F0C002E + public static int afc_cmd_list_view = 2131492910; + + // aapt resource value: 0x7F0C002F + public static int afc_cmd_new_folder = 2131492911; + + // aapt resource value: 0x7F0C0030 + public static int afc_cmd_select_all_files = 2131492912; + + // aapt resource value: 0x7F0C0031 + public static int afc_cmd_select_all_folders = 2131492913; + + // aapt resource value: 0x7F0C0032 + public static int afc_cmd_sort = 2131492914; + + // aapt resource value: 0x7F0C0033 + public static int afc_ellipsize = 2131492915; + + // aapt resource value: 0x7F0C0034 + public static int afc_file = 2131492916; + + // aapt resource value: 0x7F0C0035 + public static int afc_folder = 2131492917; + + // aapt resource value: 0x7F0C0036 + public static int afc_hint_clear = 2131492918; + + // aapt resource value: 0x7F0C0037 + public static int afc_hint_folder_name = 2131492919; + + // aapt resource value: 0x7F0C0038 + public static int afc_hint_save_as_filename = 2131492920; + + // aapt resource value: 0x7F0C0039 + public static int afc_hint_search = 2131492921; + + // aapt resource value: 0x7F0C003A + public static int afc_lib_name = 2131492922; + + // aapt resource value: 0x7F0C003B + public static int afc_lib_version_name = 2131492923; + + // aapt resource value: 0x7F0C003C + public static int afc_msg_app_doesnot_have_permission_to_create_files = 2131492924; + + // aapt resource value: 0x7F0C003D + public static int afc_msg_app_doesnot_have_permission_to_delete_files = 2131492925; + + // aapt resource value: 0x7F0C003E + public static int afc_msg_cancelled = 2131492926; + + // aapt resource value: 0x7F0C003F + public static int afc_msg_cannot_connect_to_file_provider_service = 2131492927; + + // aapt resource value: 0x7F0C0040 + public static int afc_msg_cannot_create_new_folder_here = 2131492928; + + // aapt resource value: 0x7F0C0041 + public static int afc_msg_cannot_save_a_file_here = 2131492929; + + // aapt resource value: 0x7F0C0042 + public static int afc_msg_done = 2131492930; + + // aapt resource value: 0x7F0C0043 + public static int afc_msg_empty = 2131492931; + + // aapt resource value: 0x7F0C0044 + public static int afc_msg_failed_please_try_again = 2131492932; + + // aapt resource value: 0x7F0C0045 + public static int afc_msg_loading = 2131492933; + + // aapt resource value: 0x7F0C0046 + public static int afc_phone = 2131492934; + + // aapt resource value: 0x7F0C0047 + public static int afc_pkey_display_last_location = 2131492935; + + // aapt resource value: 0x7F0C0048 + public static int afc_pkey_display_remember_last_location = 2131492936; + + // aapt resource value: 0x7F0C0049 + public static int afc_pkey_display_show_time_for_old_days = 2131492937; + + // aapt resource value: 0x7F0C004A + public static int afc_pkey_display_show_time_for_old_days_this_year = 2131492938; + + // aapt resource value: 0x7F0C004B + public static int afc_pkey_display_sort_ascending = 2131492939; + + // aapt resource value: 0x7F0C004C + public static int afc_pkey_display_sort_type = 2131492940; + + // aapt resource value: 0x7F0C004D + public static int afc_pkey_display_view_type = 2131492941; + + // aapt resource value: 0x7F0C004E + public static int afc_pmsg_cannot_access_dir = 2131492942; + + // aapt resource value: 0x7F0C004F + public static int afc_pmsg_cannot_create_folder = 2131492943; + + // aapt resource value: 0x7F0C0050 + public static int afc_pmsg_cannot_delete_file = 2131492944; + + // aapt resource value: 0x7F0C0051 + public static int afc_pmsg_confirm_delete_file = 2131492945; + + // aapt resource value: 0x7F0C0052 + public static int afc_pmsg_confirm_replace_file = 2131492946; + + // aapt resource value: 0x7F0C0053 + public static int afc_pmsg_deleting_file = 2131492947; + + // aapt resource value: 0x7F0C0055 + public static int afc_pmsg_filename_is_directory = 2131492949; + + // aapt resource value: 0x7F0C0056 + public static int afc_pmsg_filename_is_invalid = 2131492950; + + // aapt resource value: 0x7F0C0054 + public static int afc_pmsg_file_has_been_deleted = 2131492948; + + // aapt resource value: 0x7F0C0057 + public static int afc_pmsg_max_file_count_allowed = 2131492951; + + // aapt resource value: 0x7F0C0058 + public static int afc_pmsg_unknown_error = 2131492952; + + // aapt resource value: 0x7F0C0059 + public static int afc_root = 2131492953; + + // aapt resource value: 0x7F0C005A + public static int afc_title_advanced_selection = 2131492954; + + // aapt resource value: 0x7F0C005B + public static int afc_title_confirmation = 2131492955; + + // aapt resource value: 0x7F0C005C + public static int afc_title_date = 2131492956; + + // aapt resource value: 0x7F0C005D + public static int afc_title_error = 2131492957; + + // aapt resource value: 0x7F0C005E + public static int afc_title_info = 2131492958; + + // aapt resource value: 0x7F0C005F + public static int afc_title_name = 2131492959; + + // aapt resource value: 0x7F0C0060 + public static int afc_title_save_as = 2131492960; + + // aapt resource value: 0x7F0C0061 + public static int afc_title_size = 2131492961; + + // aapt resource value: 0x7F0C0062 + public static int afc_title_sort_by = 2131492962; + + // aapt resource value: 0x7F0C0063 + public static int afc_yesterday = 2131492963; + + // aapt resource value: 0x7F0C0000 + public static int ApplicationName = 2131492864; + + // aapt resource value: 0x7F0C0064 + public static int app_name = 2131492964; + + // aapt resource value: 0x7F0C0065 + public static int library_name = 2131492965; + + // aapt resource value: 0x7F0C0066 + public static int search_menu_title = 2131492966; + + // aapt resource value: 0x7F0C0067 + public static int status_bar_notification_info_overflow = 2131492967; static String() { @@ -2665,1064 +3582,1148 @@ namespace keepass2android public partial class Style { - // aapt resource value: 0x7F0B0000 - public static int AlertDialog_AppCompat = 2131427328; + // aapt resource value: 0x7F0D0171 + public static int afc_action_navi = 2131558769; - // aapt resource value: 0x7F0B0001 - public static int AlertDialog_AppCompat_Light = 2131427329; + // aapt resource value: 0x7F0D0172 + public static int afc_action_navi_left = 2131558770; - // aapt resource value: 0x7F0B0002 - public static int Animation_AppCompat_Dialog = 2131427330; + // aapt resource value: 0x7F0D0173 + public static int afc_action_navi_right = 2131558771; - // aapt resource value: 0x7F0B0003 - public static int Animation_AppCompat_DropDownUp = 2131427331; + // aapt resource value: 0x7F0D0006 + public static int Afc_BaseThemeHelper_Dark = 2131558406; - // aapt resource value: 0x7F0B0004 - public static int Animation_AppCompat_Tooltip = 2131427332; + // aapt resource value: 0x7F0D0007 + public static int Afc_BaseThemeHelper_Dialog_Dark = 2131558407; - // aapt resource value: 0x7F0B0005 - public static int AppBaseTheme = 2131427333; + // aapt resource value: 0x7F0D0008 + public static int Afc_BaseThemeHelper_Dialog_Light = 2131558408; - // aapt resource value: 0x7F0B0006 - public static int AppTheme = 2131427334; + // aapt resource value: 0x7F0D0009 + public static int Afc_BaseThemeHelper_Light = 2131558409; - // aapt resource value: 0x7F0B0007 - public static int Base_AlertDialog_AppCompat = 2131427335; + // aapt resource value: 0x7F0D000A + public static int Afc_BaseThemeHelper_Light_DarkActionBar = 2131558410; - // aapt resource value: 0x7F0B0008 - public static int Base_AlertDialog_AppCompat_Light = 2131427336; + // aapt resource value: 0x7F0D0001 + public static int Afc_BaseTheme_Dark = 2131558401; - // aapt resource value: 0x7F0B0009 - public static int Base_Animation_AppCompat_Dialog = 2131427337; + // aapt resource value: 0x7F0D0002 + public static int Afc_BaseTheme_Dialog_Dark = 2131558402; - // aapt resource value: 0x7F0B000A - public static int Base_Animation_AppCompat_DropDownUp = 2131427338; + // aapt resource value: 0x7F0D0003 + public static int Afc_BaseTheme_Dialog_Light = 2131558403; - // aapt resource value: 0x7F0B000B - public static int Base_Animation_AppCompat_Tooltip = 2131427339; + // aapt resource value: 0x7F0D0004 + public static int Afc_BaseTheme_Light = 2131558404; - // aapt resource value: 0x7F0B000D - public static int Base_DialogWindowTitleBackground_AppCompat = 2131427341; + // aapt resource value: 0x7F0D0005 + public static int Afc_BaseTheme_Light_DarkActionBar = 2131558405; - // aapt resource value: 0x7F0B000C - public static int Base_DialogWindowTitle_AppCompat = 2131427340; + // aapt resource value: 0x7F0D0174 + public static int afc_base_button_location = 2131558772; - // aapt resource value: 0x7F0B000E - public static int Base_TextAppearance_AppCompat = 2131427342; + // aapt resource value: 0x7F0D0175 + public static int afc_button_location = 2131558773; - // aapt resource value: 0x7F0B000F - public static int Base_TextAppearance_AppCompat_Body1 = 2131427343; + // aapt resource value: 0x7F0D0176 + public static int afc_button_sort = 2131558774; - // aapt resource value: 0x7F0B0010 - public static int Base_TextAppearance_AppCompat_Body2 = 2131427344; + // aapt resource value: 0x7F0D0177 + public static int afc_home_button_navigators = 2131558775; - // aapt resource value: 0x7F0B0011 - public static int Base_TextAppearance_AppCompat_Button = 2131427345; + // aapt resource value: 0x7F0D0178 + public static int afc_main_button_navi = 2131558776; - // aapt resource value: 0x7F0B0012 - public static int Base_TextAppearance_AppCompat_Caption = 2131427346; + // aapt resource value: 0x7F0D0179 + public static int afc_main_button_navi_left = 2131558777; - // aapt resource value: 0x7F0B0013 - public static int Base_TextAppearance_AppCompat_Display1 = 2131427347; + // aapt resource value: 0x7F0D017A + public static int afc_main_button_navi_right = 2131558778; - // aapt resource value: 0x7F0B0014 - public static int Base_TextAppearance_AppCompat_Display2 = 2131427348; + // aapt resource value: 0x7F0D000B + public static int Afc_Theme_Dark = 2131558411; - // aapt resource value: 0x7F0B0015 - public static int Base_TextAppearance_AppCompat_Display3 = 2131427349; + // aapt resource value: 0x7F0D000C + public static int Afc_Theme_Dialog_Dark = 2131558412; - // aapt resource value: 0x7F0B0016 - public static int Base_TextAppearance_AppCompat_Display4 = 2131427350; + // aapt resource value: 0x7F0D000D + public static int Afc_Theme_Dialog_Light = 2131558413; - // aapt resource value: 0x7F0B0017 - public static int Base_TextAppearance_AppCompat_Headline = 2131427351; + // aapt resource value: 0x7F0D000E + public static int Afc_Theme_Light = 2131558414; - // aapt resource value: 0x7F0B0018 - public static int Base_TextAppearance_AppCompat_Inverse = 2131427352; + // aapt resource value: 0x7F0D000F + public static int Afc_Theme_Light_DarkActionBar = 2131558415; - // aapt resource value: 0x7F0B0019 - public static int Base_TextAppearance_AppCompat_Large = 2131427353; + // aapt resource value: 0x7F0D017B + public static int afc_widget_search_view_button_clear = 2131558779; - // aapt resource value: 0x7F0B001A - public static int Base_TextAppearance_AppCompat_Large_Inverse = 2131427354; + // aapt resource value: 0x7F0D017C + public static int afc_widget_search_view_button_search = 2131558780; - // aapt resource value: 0x7F0B001B - public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427355; + // aapt resource value: 0x7F0D0010 + public static int AlertDialog_AppCompat = 2131558416; - // aapt resource value: 0x7F0B001C - public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427356; + // aapt resource value: 0x7F0D0011 + public static int AlertDialog_AppCompat_Light = 2131558417; - // aapt resource value: 0x7F0B001D - public static int Base_TextAppearance_AppCompat_Medium = 2131427357; + // aapt resource value: 0x7F0D0012 + public static int Animation_AppCompat_Dialog = 2131558418; - // aapt resource value: 0x7F0B001E - public static int Base_TextAppearance_AppCompat_Medium_Inverse = 2131427358; + // aapt resource value: 0x7F0D0013 + public static int Animation_AppCompat_DropDownUp = 2131558419; - // aapt resource value: 0x7F0B001F - public static int Base_TextAppearance_AppCompat_Menu = 2131427359; + // aapt resource value: 0x7F0D0014 + public static int Animation_AppCompat_Tooltip = 2131558420; - // aapt resource value: 0x7F0B0020 - public static int Base_TextAppearance_AppCompat_SearchResult = 2131427360; + // aapt resource value: 0x7F0D0000 + public static int AOSP_DialogWindowTitle = 2131558400; - // aapt resource value: 0x7F0B0021 - public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131427361; + // aapt resource value: 0x7F0D0015 + public static int AppBaseTheme = 2131558421; - // aapt resource value: 0x7F0B0022 - public static int Base_TextAppearance_AppCompat_SearchResult_Title = 2131427362; + // aapt resource value: 0x7F0D0016 + public static int AppTheme = 2131558422; - // aapt resource value: 0x7F0B0023 - public static int Base_TextAppearance_AppCompat_Small = 2131427363; + // aapt resource value: 0x7F0D0017 + public static int Base_AlertDialog_AppCompat = 2131558423; - // aapt resource value: 0x7F0B0024 - public static int Base_TextAppearance_AppCompat_Small_Inverse = 2131427364; + // aapt resource value: 0x7F0D0018 + public static int Base_AlertDialog_AppCompat_Light = 2131558424; - // aapt resource value: 0x7F0B0025 - public static int Base_TextAppearance_AppCompat_Subhead = 2131427365; + // aapt resource value: 0x7F0D0019 + public static int Base_Animation_AppCompat_Dialog = 2131558425; - // aapt resource value: 0x7F0B0026 - public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131427366; + // aapt resource value: 0x7F0D001A + public static int Base_Animation_AppCompat_DropDownUp = 2131558426; - // aapt resource value: 0x7F0B0027 - public static int Base_TextAppearance_AppCompat_Title = 2131427367; + // aapt resource value: 0x7F0D001B + public static int Base_Animation_AppCompat_Tooltip = 2131558427; - // aapt resource value: 0x7F0B0028 - public static int Base_TextAppearance_AppCompat_Title_Inverse = 2131427368; + // aapt resource value: 0x7F0D001D + public static int Base_DialogWindowTitleBackground_AppCompat = 2131558429; - // aapt resource value: 0x7F0B0029 - public static int Base_TextAppearance_AppCompat_Tooltip = 2131427369; + // aapt resource value: 0x7F0D001C + public static int Base_DialogWindowTitle_AppCompat = 2131558428; - // aapt resource value: 0x7F0B002A - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427370; + // aapt resource value: 0x7F0D001E + public static int Base_TextAppearance_AppCompat = 2131558430; - // aapt resource value: 0x7F0B002B - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427371; + // aapt resource value: 0x7F0D001F + public static int Base_TextAppearance_AppCompat_Body1 = 2131558431; - // aapt resource value: 0x7F0B002C - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427372; + // aapt resource value: 0x7F0D0020 + public static int Base_TextAppearance_AppCompat_Body2 = 2131558432; - // aapt resource value: 0x7F0B002D - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427373; + // aapt resource value: 0x7F0D0021 + public static int Base_TextAppearance_AppCompat_Button = 2131558433; - // aapt resource value: 0x7F0B002E - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427374; + // aapt resource value: 0x7F0D0022 + public static int Base_TextAppearance_AppCompat_Caption = 2131558434; - // aapt resource value: 0x7F0B002F - public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427375; + // aapt resource value: 0x7F0D0023 + public static int Base_TextAppearance_AppCompat_Display1 = 2131558435; - // aapt resource value: 0x7F0B0030 - public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427376; + // aapt resource value: 0x7F0D0024 + public static int Base_TextAppearance_AppCompat_Display2 = 2131558436; - // aapt resource value: 0x7F0B0031 - public static int Base_TextAppearance_AppCompat_Widget_Button = 2131427377; + // aapt resource value: 0x7F0D0025 + public static int Base_TextAppearance_AppCompat_Display3 = 2131558437; - // aapt resource value: 0x7F0B0032 - public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427378; + // aapt resource value: 0x7F0D0026 + public static int Base_TextAppearance_AppCompat_Display4 = 2131558438; - // aapt resource value: 0x7F0B0033 - public static int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131427379; + // aapt resource value: 0x7F0D0027 + public static int Base_TextAppearance_AppCompat_Headline = 2131558439; - // aapt resource value: 0x7F0B0034 - public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131427380; + // aapt resource value: 0x7F0D0028 + public static int Base_TextAppearance_AppCompat_Inverse = 2131558440; - // aapt resource value: 0x7F0B0035 - public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131427381; + // aapt resource value: 0x7F0D0029 + public static int Base_TextAppearance_AppCompat_Large = 2131558441; - // aapt resource value: 0x7F0B0036 - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427382; + // aapt resource value: 0x7F0D002A + public static int Base_TextAppearance_AppCompat_Large_Inverse = 2131558442; - // aapt resource value: 0x7F0B0037 - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427383; + // aapt resource value: 0x7F0D002B + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131558443; - // aapt resource value: 0x7F0B0038 - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427384; + // aapt resource value: 0x7F0D002C + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131558444; - // aapt resource value: 0x7F0B0039 - public static int Base_TextAppearance_AppCompat_Widget_Switch = 2131427385; + // aapt resource value: 0x7F0D002D + public static int Base_TextAppearance_AppCompat_Medium = 2131558445; - // aapt resource value: 0x7F0B003A - public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427386; + // aapt resource value: 0x7F0D002E + public static int Base_TextAppearance_AppCompat_Medium_Inverse = 2131558446; - // aapt resource value: 0x7F0B003B - public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427387; + // aapt resource value: 0x7F0D002F + public static int Base_TextAppearance_AppCompat_Menu = 2131558447; - // aapt resource value: 0x7F0B003C - public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427388; + // aapt resource value: 0x7F0D0030 + public static int Base_TextAppearance_AppCompat_SearchResult = 2131558448; - // aapt resource value: 0x7F0B003D - public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427389; + // aapt resource value: 0x7F0D0031 + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131558449; - // aapt resource value: 0x7F0B004C - public static int Base_ThemeOverlay_AppCompat = 2131427404; + // aapt resource value: 0x7F0D0032 + public static int Base_TextAppearance_AppCompat_SearchResult_Title = 2131558450; - // aapt resource value: 0x7F0B004D - public static int Base_ThemeOverlay_AppCompat_ActionBar = 2131427405; + // aapt resource value: 0x7F0D0033 + public static int Base_TextAppearance_AppCompat_Small = 2131558451; - // aapt resource value: 0x7F0B004E - public static int Base_ThemeOverlay_AppCompat_Dark = 2131427406; + // aapt resource value: 0x7F0D0034 + public static int Base_TextAppearance_AppCompat_Small_Inverse = 2131558452; - // aapt resource value: 0x7F0B004F - public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131427407; + // aapt resource value: 0x7F0D0035 + public static int Base_TextAppearance_AppCompat_Subhead = 2131558453; - // aapt resource value: 0x7F0B0050 - public static int Base_ThemeOverlay_AppCompat_Dialog = 2131427408; + // aapt resource value: 0x7F0D0036 + public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131558454; - // aapt resource value: 0x7F0B0051 - public static int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131427409; + // aapt resource value: 0x7F0D0037 + public static int Base_TextAppearance_AppCompat_Title = 2131558455; - // aapt resource value: 0x7F0B0052 - public static int Base_ThemeOverlay_AppCompat_Light = 2131427410; + // aapt resource value: 0x7F0D0038 + public static int Base_TextAppearance_AppCompat_Title_Inverse = 2131558456; - // aapt resource value: 0x7F0B003E - public static int Base_Theme_AppCompat = 2131427390; + // aapt resource value: 0x7F0D0039 + public static int Base_TextAppearance_AppCompat_Tooltip = 2131558457; - // aapt resource value: 0x7F0B003F - public static int Base_Theme_AppCompat_CompactMenu = 2131427391; + // aapt resource value: 0x7F0D003A + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131558458; - // aapt resource value: 0x7F0B0040 - public static int Base_Theme_AppCompat_Dialog = 2131427392; + // aapt resource value: 0x7F0D003B + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131558459; - // aapt resource value: 0x7F0B0044 - public static int Base_Theme_AppCompat_DialogWhenLarge = 2131427396; + // aapt resource value: 0x7F0D003C + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131558460; - // aapt resource value: 0x7F0B0041 - public static int Base_Theme_AppCompat_Dialog_Alert = 2131427393; + // aapt resource value: 0x7F0D003D + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131558461; - // aapt resource value: 0x7F0B0042 - public static int Base_Theme_AppCompat_Dialog_FixedSize = 2131427394; + // aapt resource value: 0x7F0D003E + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131558462; - // aapt resource value: 0x7F0B0043 - public static int Base_Theme_AppCompat_Dialog_MinWidth = 2131427395; + // aapt resource value: 0x7F0D003F + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131558463; - // aapt resource value: 0x7F0B0045 - public static int Base_Theme_AppCompat_Light = 2131427397; + // aapt resource value: 0x7F0D0040 + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131558464; - // aapt resource value: 0x7F0B0046 - public static int Base_Theme_AppCompat_Light_DarkActionBar = 2131427398; + // aapt resource value: 0x7F0D0041 + public static int Base_TextAppearance_AppCompat_Widget_Button = 2131558465; - // aapt resource value: 0x7F0B0047 - public static int Base_Theme_AppCompat_Light_Dialog = 2131427399; + // aapt resource value: 0x7F0D0042 + public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131558466; - // aapt resource value: 0x7F0B004B - public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131427403; + // aapt resource value: 0x7F0D0043 + public static int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131558467; - // aapt resource value: 0x7F0B0048 - public static int Base_Theme_AppCompat_Light_Dialog_Alert = 2131427400; + // aapt resource value: 0x7F0D0044 + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131558468; - // aapt resource value: 0x7F0B0049 - public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131427401; + // aapt resource value: 0x7F0D0045 + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131558469; - // aapt resource value: 0x7F0B004A - public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131427402; + // aapt resource value: 0x7F0D0046 + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131558470; - // aapt resource value: 0x7F0B0057 - public static int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131427415; + // aapt resource value: 0x7F0D0047 + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131558471; - // aapt resource value: 0x7F0B0053 - public static int Base_V21_Theme_AppCompat = 2131427411; + // aapt resource value: 0x7F0D0048 + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131558472; - // aapt resource value: 0x7F0B0054 - public static int Base_V21_Theme_AppCompat_Dialog = 2131427412; + // aapt resource value: 0x7F0D0049 + public static int Base_TextAppearance_AppCompat_Widget_Switch = 2131558473; - // aapt resource value: 0x7F0B0055 - public static int Base_V21_Theme_AppCompat_Light = 2131427413; + // aapt resource value: 0x7F0D004A + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131558474; - // aapt resource value: 0x7F0B0056 - public static int Base_V21_Theme_AppCompat_Light_Dialog = 2131427414; + // aapt resource value: 0x7F0D004B + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131558475; - // aapt resource value: 0x7F0B0058 - public static int Base_V22_Theme_AppCompat = 2131427416; + // aapt resource value: 0x7F0D004C + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131558476; - // aapt resource value: 0x7F0B0059 - public static int Base_V22_Theme_AppCompat_Light = 2131427417; + // aapt resource value: 0x7F0D004D + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131558477; - // aapt resource value: 0x7F0B005A - public static int Base_V23_Theme_AppCompat = 2131427418; + // aapt resource value: 0x7F0D005C + public static int Base_ThemeOverlay_AppCompat = 2131558492; - // aapt resource value: 0x7F0B005B - public static int Base_V23_Theme_AppCompat_Light = 2131427419; + // aapt resource value: 0x7F0D005D + public static int Base_ThemeOverlay_AppCompat_ActionBar = 2131558493; - // aapt resource value: 0x7F0B005C - public static int Base_V26_Theme_AppCompat = 2131427420; + // aapt resource value: 0x7F0D005E + public static int Base_ThemeOverlay_AppCompat_Dark = 2131558494; - // aapt resource value: 0x7F0B005D - public static int Base_V26_Theme_AppCompat_Light = 2131427421; + // aapt resource value: 0x7F0D005F + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131558495; - // aapt resource value: 0x7F0B005E - public static int Base_V26_Widget_AppCompat_Toolbar = 2131427422; + // aapt resource value: 0x7F0D0060 + public static int Base_ThemeOverlay_AppCompat_Dialog = 2131558496; - // aapt resource value: 0x7F0B005F - public static int Base_V28_Theme_AppCompat = 2131427423; + // aapt resource value: 0x7F0D0061 + public static int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131558497; - // aapt resource value: 0x7F0B0060 - public static int Base_V28_Theme_AppCompat_Light = 2131427424; + // aapt resource value: 0x7F0D0062 + public static int Base_ThemeOverlay_AppCompat_Light = 2131558498; - // aapt resource value: 0x7F0B0065 - public static int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131427429; + // aapt resource value: 0x7F0D004E + public static int Base_Theme_AppCompat = 2131558478; - // aapt resource value: 0x7F0B0061 - public static int Base_V7_Theme_AppCompat = 2131427425; + // aapt resource value: 0x7F0D004F + public static int Base_Theme_AppCompat_CompactMenu = 2131558479; - // aapt resource value: 0x7F0B0062 - public static int Base_V7_Theme_AppCompat_Dialog = 2131427426; + // aapt resource value: 0x7F0D0050 + public static int Base_Theme_AppCompat_Dialog = 2131558480; - // aapt resource value: 0x7F0B0063 - public static int Base_V7_Theme_AppCompat_Light = 2131427427; + // aapt resource value: 0x7F0D0054 + public static int Base_Theme_AppCompat_DialogWhenLarge = 2131558484; - // aapt resource value: 0x7F0B0064 - public static int Base_V7_Theme_AppCompat_Light_Dialog = 2131427428; + // aapt resource value: 0x7F0D0051 + public static int Base_Theme_AppCompat_Dialog_Alert = 2131558481; - // aapt resource value: 0x7F0B0066 - public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131427430; + // aapt resource value: 0x7F0D0052 + public static int Base_Theme_AppCompat_Dialog_FixedSize = 2131558482; - // aapt resource value: 0x7F0B0067 - public static int Base_V7_Widget_AppCompat_EditText = 2131427431; + // aapt resource value: 0x7F0D0053 + public static int Base_Theme_AppCompat_Dialog_MinWidth = 2131558483; - // aapt resource value: 0x7F0B0068 - public static int Base_V7_Widget_AppCompat_Toolbar = 2131427432; + // aapt resource value: 0x7F0D0055 + public static int Base_Theme_AppCompat_Light = 2131558485; - // aapt resource value: 0x7F0B0069 - public static int Base_Widget_AppCompat_ActionBar = 2131427433; + // aapt resource value: 0x7F0D0056 + public static int Base_Theme_AppCompat_Light_DarkActionBar = 2131558486; - // aapt resource value: 0x7F0B006A - public static int Base_Widget_AppCompat_ActionBar_Solid = 2131427434; + // aapt resource value: 0x7F0D0057 + public static int Base_Theme_AppCompat_Light_Dialog = 2131558487; - // aapt resource value: 0x7F0B006B - public static int Base_Widget_AppCompat_ActionBar_TabBar = 2131427435; + // aapt resource value: 0x7F0D005B + public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131558491; - // aapt resource value: 0x7F0B006C - public static int Base_Widget_AppCompat_ActionBar_TabText = 2131427436; + // aapt resource value: 0x7F0D0058 + public static int Base_Theme_AppCompat_Light_Dialog_Alert = 2131558488; - // aapt resource value: 0x7F0B006D - public static int Base_Widget_AppCompat_ActionBar_TabView = 2131427437; + // aapt resource value: 0x7F0D0059 + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131558489; - // aapt resource value: 0x7F0B006E - public static int Base_Widget_AppCompat_ActionButton = 2131427438; + // aapt resource value: 0x7F0D005A + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131558490; - // aapt resource value: 0x7F0B006F - public static int Base_Widget_AppCompat_ActionButton_CloseMode = 2131427439; + // aapt resource value: 0x7F0D0067 + public static int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131558503; - // aapt resource value: 0x7F0B0070 - public static int Base_Widget_AppCompat_ActionButton_Overflow = 2131427440; + // aapt resource value: 0x7F0D0063 + public static int Base_V21_Theme_AppCompat = 2131558499; - // aapt resource value: 0x7F0B0071 - public static int Base_Widget_AppCompat_ActionMode = 2131427441; + // aapt resource value: 0x7F0D0064 + public static int Base_V21_Theme_AppCompat_Dialog = 2131558500; - // aapt resource value: 0x7F0B0072 - public static int Base_Widget_AppCompat_ActivityChooserView = 2131427442; + // aapt resource value: 0x7F0D0065 + public static int Base_V21_Theme_AppCompat_Light = 2131558501; - // aapt resource value: 0x7F0B0073 - public static int Base_Widget_AppCompat_AutoCompleteTextView = 2131427443; + // aapt resource value: 0x7F0D0066 + public static int Base_V21_Theme_AppCompat_Light_Dialog = 2131558502; - // aapt resource value: 0x7F0B0074 - public static int Base_Widget_AppCompat_Button = 2131427444; + // aapt resource value: 0x7F0D0068 + public static int Base_V22_Theme_AppCompat = 2131558504; - // aapt resource value: 0x7F0B007A - public static int Base_Widget_AppCompat_ButtonBar = 2131427450; + // aapt resource value: 0x7F0D0069 + public static int Base_V22_Theme_AppCompat_Light = 2131558505; - // aapt resource value: 0x7F0B007B - public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131427451; + // aapt resource value: 0x7F0D006A + public static int Base_V23_Theme_AppCompat = 2131558506; - // aapt resource value: 0x7F0B0075 - public static int Base_Widget_AppCompat_Button_Borderless = 2131427445; + // aapt resource value: 0x7F0D006B + public static int Base_V23_Theme_AppCompat_Light = 2131558507; - // aapt resource value: 0x7F0B0076 - public static int Base_Widget_AppCompat_Button_Borderless_Colored = 2131427446; + // aapt resource value: 0x7F0D006C + public static int Base_V26_Theme_AppCompat = 2131558508; - // aapt resource value: 0x7F0B0077 - public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427447; + // aapt resource value: 0x7F0D006D + public static int Base_V26_Theme_AppCompat_Light = 2131558509; - // aapt resource value: 0x7F0B0078 - public static int Base_Widget_AppCompat_Button_Colored = 2131427448; + // aapt resource value: 0x7F0D006E + public static int Base_V26_Widget_AppCompat_Toolbar = 2131558510; - // aapt resource value: 0x7F0B0079 - public static int Base_Widget_AppCompat_Button_Small = 2131427449; + // aapt resource value: 0x7F0D006F + public static int Base_V28_Theme_AppCompat = 2131558511; - // aapt resource value: 0x7F0B007C - public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131427452; + // aapt resource value: 0x7F0D0070 + public static int Base_V28_Theme_AppCompat_Light = 2131558512; - // aapt resource value: 0x7F0B007D - public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131427453; + // aapt resource value: 0x7F0D0075 + public static int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131558517; - // aapt resource value: 0x7F0B007E - public static int Base_Widget_AppCompat_CompoundButton_Switch = 2131427454; + // aapt resource value: 0x7F0D0071 + public static int Base_V7_Theme_AppCompat = 2131558513; - // aapt resource value: 0x7F0B007F - public static int Base_Widget_AppCompat_DrawerArrowToggle = 2131427455; + // aapt resource value: 0x7F0D0072 + public static int Base_V7_Theme_AppCompat_Dialog = 2131558514; - // aapt resource value: 0x7F0B0080 - public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131427456; + // aapt resource value: 0x7F0D0073 + public static int Base_V7_Theme_AppCompat_Light = 2131558515; - // aapt resource value: 0x7F0B0081 - public static int Base_Widget_AppCompat_DropDownItem_Spinner = 2131427457; + // aapt resource value: 0x7F0D0074 + public static int Base_V7_Theme_AppCompat_Light_Dialog = 2131558516; - // aapt resource value: 0x7F0B0082 - public static int Base_Widget_AppCompat_EditText = 2131427458; + // aapt resource value: 0x7F0D0076 + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131558518; - // aapt resource value: 0x7F0B0083 - public static int Base_Widget_AppCompat_ImageButton = 2131427459; + // aapt resource value: 0x7F0D0077 + public static int Base_V7_Widget_AppCompat_EditText = 2131558519; - // aapt resource value: 0x7F0B0084 - public static int Base_Widget_AppCompat_Light_ActionBar = 2131427460; + // aapt resource value: 0x7F0D0078 + public static int Base_V7_Widget_AppCompat_Toolbar = 2131558520; - // aapt resource value: 0x7F0B0085 - public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131427461; + // aapt resource value: 0x7F0D0079 + public static int Base_Widget_AppCompat_ActionBar = 2131558521; - // aapt resource value: 0x7F0B0086 - public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131427462; + // aapt resource value: 0x7F0D007A + public static int Base_Widget_AppCompat_ActionBar_Solid = 2131558522; - // aapt resource value: 0x7F0B0087 - public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131427463; + // aapt resource value: 0x7F0D007B + public static int Base_Widget_AppCompat_ActionBar_TabBar = 2131558523; - // aapt resource value: 0x7F0B0088 - public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427464; + // aapt resource value: 0x7F0D007C + public static int Base_Widget_AppCompat_ActionBar_TabText = 2131558524; - // aapt resource value: 0x7F0B0089 - public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131427465; + // aapt resource value: 0x7F0D007D + public static int Base_Widget_AppCompat_ActionBar_TabView = 2131558525; - // aapt resource value: 0x7F0B008A - public static int Base_Widget_AppCompat_Light_PopupMenu = 2131427466; + // aapt resource value: 0x7F0D007E + public static int Base_Widget_AppCompat_ActionButton = 2131558526; - // aapt resource value: 0x7F0B008B - public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131427467; + // aapt resource value: 0x7F0D007F + public static int Base_Widget_AppCompat_ActionButton_CloseMode = 2131558527; - // aapt resource value: 0x7F0B008C - public static int Base_Widget_AppCompat_ListMenuView = 2131427468; + // aapt resource value: 0x7F0D0080 + public static int Base_Widget_AppCompat_ActionButton_Overflow = 2131558528; - // aapt resource value: 0x7F0B008D - public static int Base_Widget_AppCompat_ListPopupWindow = 2131427469; + // aapt resource value: 0x7F0D0081 + public static int Base_Widget_AppCompat_ActionMode = 2131558529; - // aapt resource value: 0x7F0B008E - public static int Base_Widget_AppCompat_ListView = 2131427470; + // aapt resource value: 0x7F0D0082 + public static int Base_Widget_AppCompat_ActivityChooserView = 2131558530; - // aapt resource value: 0x7F0B008F - public static int Base_Widget_AppCompat_ListView_DropDown = 2131427471; + // aapt resource value: 0x7F0D0083 + public static int Base_Widget_AppCompat_AutoCompleteTextView = 2131558531; - // aapt resource value: 0x7F0B0090 - public static int Base_Widget_AppCompat_ListView_Menu = 2131427472; + // aapt resource value: 0x7F0D0084 + public static int Base_Widget_AppCompat_Button = 2131558532; - // aapt resource value: 0x7F0B0091 - public static int Base_Widget_AppCompat_PopupMenu = 2131427473; + // aapt resource value: 0x7F0D008A + public static int Base_Widget_AppCompat_ButtonBar = 2131558538; - // aapt resource value: 0x7F0B0092 - public static int Base_Widget_AppCompat_PopupMenu_Overflow = 2131427474; + // aapt resource value: 0x7F0D008B + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131558539; - // aapt resource value: 0x7F0B0093 - public static int Base_Widget_AppCompat_PopupWindow = 2131427475; + // aapt resource value: 0x7F0D0085 + public static int Base_Widget_AppCompat_Button_Borderless = 2131558533; - // aapt resource value: 0x7F0B0094 - public static int Base_Widget_AppCompat_ProgressBar = 2131427476; + // aapt resource value: 0x7F0D0086 + public static int Base_Widget_AppCompat_Button_Borderless_Colored = 2131558534; - // aapt resource value: 0x7F0B0095 - public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131427477; + // aapt resource value: 0x7F0D0087 + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131558535; - // aapt resource value: 0x7F0B0096 - public static int Base_Widget_AppCompat_RatingBar = 2131427478; + // aapt resource value: 0x7F0D0088 + public static int Base_Widget_AppCompat_Button_Colored = 2131558536; - // aapt resource value: 0x7F0B0097 - public static int Base_Widget_AppCompat_RatingBar_Indicator = 2131427479; + // aapt resource value: 0x7F0D0089 + public static int Base_Widget_AppCompat_Button_Small = 2131558537; - // aapt resource value: 0x7F0B0098 - public static int Base_Widget_AppCompat_RatingBar_Small = 2131427480; + // aapt resource value: 0x7F0D008C + public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131558540; - // aapt resource value: 0x7F0B0099 - public static int Base_Widget_AppCompat_SearchView = 2131427481; + // aapt resource value: 0x7F0D008D + public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131558541; - // aapt resource value: 0x7F0B009A - public static int Base_Widget_AppCompat_SearchView_ActionBar = 2131427482; + // aapt resource value: 0x7F0D008E + public static int Base_Widget_AppCompat_CompoundButton_Switch = 2131558542; - // aapt resource value: 0x7F0B009B - public static int Base_Widget_AppCompat_SeekBar = 2131427483; + // aapt resource value: 0x7F0D008F + public static int Base_Widget_AppCompat_DrawerArrowToggle = 2131558543; - // aapt resource value: 0x7F0B009C - public static int Base_Widget_AppCompat_SeekBar_Discrete = 2131427484; + // aapt resource value: 0x7F0D0090 + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131558544; - // aapt resource value: 0x7F0B009D - public static int Base_Widget_AppCompat_Spinner = 2131427485; + // aapt resource value: 0x7F0D0091 + public static int Base_Widget_AppCompat_DropDownItem_Spinner = 2131558545; - // aapt resource value: 0x7F0B009E - public static int Base_Widget_AppCompat_Spinner_Underlined = 2131427486; + // aapt resource value: 0x7F0D0092 + public static int Base_Widget_AppCompat_EditText = 2131558546; - // aapt resource value: 0x7F0B009F - public static int Base_Widget_AppCompat_TextView_SpinnerItem = 2131427487; + // aapt resource value: 0x7F0D0093 + public static int Base_Widget_AppCompat_ImageButton = 2131558547; - // aapt resource value: 0x7F0B00A0 - public static int Base_Widget_AppCompat_Toolbar = 2131427488; + // aapt resource value: 0x7F0D0094 + public static int Base_Widget_AppCompat_Light_ActionBar = 2131558548; - // aapt resource value: 0x7F0B00A1 - public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131427489; + // aapt resource value: 0x7F0D0095 + public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131558549; - // aapt resource value: 0x7F0B00A2 - public static int Platform_AppCompat = 2131427490; + // aapt resource value: 0x7F0D0096 + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131558550; - // aapt resource value: 0x7F0B00A3 - public static int Platform_AppCompat_Light = 2131427491; + // aapt resource value: 0x7F0D0097 + public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131558551; - // aapt resource value: 0x7F0B00A4 - public static int Platform_ThemeOverlay_AppCompat = 2131427492; + // aapt resource value: 0x7F0D0098 + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131558552; - // aapt resource value: 0x7F0B00A5 - public static int Platform_ThemeOverlay_AppCompat_Dark = 2131427493; + // aapt resource value: 0x7F0D0099 + public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131558553; - // aapt resource value: 0x7F0B00A6 - public static int Platform_ThemeOverlay_AppCompat_Light = 2131427494; + // aapt resource value: 0x7F0D009A + public static int Base_Widget_AppCompat_Light_PopupMenu = 2131558554; - // aapt resource value: 0x7F0B00A7 - public static int Platform_V21_AppCompat = 2131427495; + // aapt resource value: 0x7F0D009B + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131558555; - // aapt resource value: 0x7F0B00A8 - public static int Platform_V21_AppCompat_Light = 2131427496; + // aapt resource value: 0x7F0D009C + public static int Base_Widget_AppCompat_ListMenuView = 2131558556; - // aapt resource value: 0x7F0B00A9 - public static int Platform_V25_AppCompat = 2131427497; + // aapt resource value: 0x7F0D009D + public static int Base_Widget_AppCompat_ListPopupWindow = 2131558557; - // aapt resource value: 0x7F0B00AA - public static int Platform_V25_AppCompat_Light = 2131427498; + // aapt resource value: 0x7F0D009E + public static int Base_Widget_AppCompat_ListView = 2131558558; - // aapt resource value: 0x7F0B00AB - public static int Platform_Widget_AppCompat_Spinner = 2131427499; + // aapt resource value: 0x7F0D009F + public static int Base_Widget_AppCompat_ListView_DropDown = 2131558559; - // aapt resource value: 0x7F0B00AC - public static int RtlOverlay_DialogWindowTitle_AppCompat = 2131427500; + // aapt resource value: 0x7F0D00A0 + public static int Base_Widget_AppCompat_ListView_Menu = 2131558560; - // aapt resource value: 0x7F0B00AD - public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131427501; + // aapt resource value: 0x7F0D00A1 + public static int Base_Widget_AppCompat_PopupMenu = 2131558561; - // aapt resource value: 0x7F0B00AE - public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131427502; + // aapt resource value: 0x7F0D00A2 + public static int Base_Widget_AppCompat_PopupMenu_Overflow = 2131558562; - // aapt resource value: 0x7F0B00AF - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131427503; + // aapt resource value: 0x7F0D00A3 + public static int Base_Widget_AppCompat_PopupWindow = 2131558563; - // aapt resource value: 0x7F0B00B0 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131427504; + // aapt resource value: 0x7F0D00A4 + public static int Base_Widget_AppCompat_ProgressBar = 2131558564; - // aapt resource value: 0x7F0B00B1 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131427505; + // aapt resource value: 0x7F0D00A5 + public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131558565; - // aapt resource value: 0x7F0B00B2 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131427506; + // aapt resource value: 0x7F0D00A6 + public static int Base_Widget_AppCompat_RatingBar = 2131558566; - // aapt resource value: 0x7F0B00B3 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131427507; + // aapt resource value: 0x7F0D00A7 + public static int Base_Widget_AppCompat_RatingBar_Indicator = 2131558567; - // aapt resource value: 0x7F0B00B4 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131427508; + // aapt resource value: 0x7F0D00A8 + public static int Base_Widget_AppCompat_RatingBar_Small = 2131558568; - // aapt resource value: 0x7F0B00BA - public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131427514; + // aapt resource value: 0x7F0D00A9 + public static int Base_Widget_AppCompat_SearchView = 2131558569; - // aapt resource value: 0x7F0B00B5 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131427509; + // aapt resource value: 0x7F0D00AA + public static int Base_Widget_AppCompat_SearchView_ActionBar = 2131558570; - // aapt resource value: 0x7F0B00B6 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131427510; + // aapt resource value: 0x7F0D00AB + public static int Base_Widget_AppCompat_SeekBar = 2131558571; - // aapt resource value: 0x7F0B00B7 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131427511; + // aapt resource value: 0x7F0D00AC + public static int Base_Widget_AppCompat_SeekBar_Discrete = 2131558572; - // aapt resource value: 0x7F0B00B8 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131427512; + // aapt resource value: 0x7F0D00AD + public static int Base_Widget_AppCompat_Spinner = 2131558573; - // aapt resource value: 0x7F0B00B9 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131427513; + // aapt resource value: 0x7F0D00AE + public static int Base_Widget_AppCompat_Spinner_Underlined = 2131558574; - // aapt resource value: 0x7F0B00BB - public static int RtlUnderlay_Widget_AppCompat_ActionButton = 2131427515; + // aapt resource value: 0x7F0D00AF + public static int Base_Widget_AppCompat_TextView_SpinnerItem = 2131558575; - // aapt resource value: 0x7F0B00BC - public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131427516; + // aapt resource value: 0x7F0D00B0 + public static int Base_Widget_AppCompat_Toolbar = 2131558576; - // aapt resource value: 0x7F0B00BD - public static int TextAppearance_AppCompat = 2131427517; + // aapt resource value: 0x7F0D00B1 + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131558577; - // aapt resource value: 0x7F0B00BE - public static int TextAppearance_AppCompat_Body1 = 2131427518; + // aapt resource value: 0x7F0D00B2 + public static int Platform_AppCompat = 2131558578; - // aapt resource value: 0x7F0B00BF - public static int TextAppearance_AppCompat_Body2 = 2131427519; + // aapt resource value: 0x7F0D00B3 + public static int Platform_AppCompat_Light = 2131558579; - // aapt resource value: 0x7F0B00C0 - public static int TextAppearance_AppCompat_Button = 2131427520; + // aapt resource value: 0x7F0D00B4 + public static int Platform_ThemeOverlay_AppCompat = 2131558580; - // aapt resource value: 0x7F0B00C1 - public static int TextAppearance_AppCompat_Caption = 2131427521; + // aapt resource value: 0x7F0D00B5 + public static int Platform_ThemeOverlay_AppCompat_Dark = 2131558581; - // aapt resource value: 0x7F0B00C2 - public static int TextAppearance_AppCompat_Display1 = 2131427522; + // aapt resource value: 0x7F0D00B6 + public static int Platform_ThemeOverlay_AppCompat_Light = 2131558582; - // aapt resource value: 0x7F0B00C3 - public static int TextAppearance_AppCompat_Display2 = 2131427523; + // aapt resource value: 0x7F0D00B7 + public static int Platform_V21_AppCompat = 2131558583; - // aapt resource value: 0x7F0B00C4 - public static int TextAppearance_AppCompat_Display3 = 2131427524; + // aapt resource value: 0x7F0D00B8 + public static int Platform_V21_AppCompat_Light = 2131558584; - // aapt resource value: 0x7F0B00C5 - public static int TextAppearance_AppCompat_Display4 = 2131427525; + // aapt resource value: 0x7F0D00B9 + public static int Platform_V25_AppCompat = 2131558585; - // aapt resource value: 0x7F0B00C6 - public static int TextAppearance_AppCompat_Headline = 2131427526; + // aapt resource value: 0x7F0D00BA + public static int Platform_V25_AppCompat_Light = 2131558586; - // aapt resource value: 0x7F0B00C7 - public static int TextAppearance_AppCompat_Inverse = 2131427527; + // aapt resource value: 0x7F0D00BB + public static int Platform_Widget_AppCompat_Spinner = 2131558587; - // aapt resource value: 0x7F0B00C8 - public static int TextAppearance_AppCompat_Large = 2131427528; + // aapt resource value: 0x7F0D00BC + public static int RtlOverlay_DialogWindowTitle_AppCompat = 2131558588; - // aapt resource value: 0x7F0B00C9 - public static int TextAppearance_AppCompat_Large_Inverse = 2131427529; + // aapt resource value: 0x7F0D00BD + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131558589; - // aapt resource value: 0x7F0B00CA - public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131427530; + // aapt resource value: 0x7F0D00BE + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131558590; - // aapt resource value: 0x7F0B00CB - public static int TextAppearance_AppCompat_Light_SearchResult_Title = 2131427531; + // aapt resource value: 0x7F0D00BF + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131558591; - // aapt resource value: 0x7F0B00CC - public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427532; + // aapt resource value: 0x7F0D00C0 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131558592; - // aapt resource value: 0x7F0B00CD - public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427533; + // aapt resource value: 0x7F0D00C1 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131558593; - // aapt resource value: 0x7F0B00CE - public static int TextAppearance_AppCompat_Medium = 2131427534; + // aapt resource value: 0x7F0D00C2 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131558594; - // aapt resource value: 0x7F0B00CF - public static int TextAppearance_AppCompat_Medium_Inverse = 2131427535; + // aapt resource value: 0x7F0D00C3 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131558595; - // aapt resource value: 0x7F0B00D0 - public static int TextAppearance_AppCompat_Menu = 2131427536; + // aapt resource value: 0x7F0D00C4 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131558596; - // aapt resource value: 0x7F0B00D1 - public static int TextAppearance_AppCompat_SearchResult_Subtitle = 2131427537; + // aapt resource value: 0x7F0D00CA + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131558602; - // aapt resource value: 0x7F0B00D2 - public static int TextAppearance_AppCompat_SearchResult_Title = 2131427538; + // aapt resource value: 0x7F0D00C5 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131558597; - // aapt resource value: 0x7F0B00D3 - public static int TextAppearance_AppCompat_Small = 2131427539; + // aapt resource value: 0x7F0D00C6 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131558598; - // aapt resource value: 0x7F0B00D4 - public static int TextAppearance_AppCompat_Small_Inverse = 2131427540; + // aapt resource value: 0x7F0D00C7 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131558599; - // aapt resource value: 0x7F0B00D5 - public static int TextAppearance_AppCompat_Subhead = 2131427541; + // aapt resource value: 0x7F0D00C8 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131558600; - // aapt resource value: 0x7F0B00D6 - public static int TextAppearance_AppCompat_Subhead_Inverse = 2131427542; + // aapt resource value: 0x7F0D00C9 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131558601; - // aapt resource value: 0x7F0B00D7 - public static int TextAppearance_AppCompat_Title = 2131427543; + // aapt resource value: 0x7F0D00CB + public static int RtlUnderlay_Widget_AppCompat_ActionButton = 2131558603; - // aapt resource value: 0x7F0B00D8 - public static int TextAppearance_AppCompat_Title_Inverse = 2131427544; + // aapt resource value: 0x7F0D00CC + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131558604; - // aapt resource value: 0x7F0B00D9 - public static int TextAppearance_AppCompat_Tooltip = 2131427545; + // aapt resource value: 0x7F0D00CD + public static int TextAppearance_AppCompat = 2131558605; - // aapt resource value: 0x7F0B00DA - public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427546; + // aapt resource value: 0x7F0D00CE + public static int TextAppearance_AppCompat_Body1 = 2131558606; - // aapt resource value: 0x7F0B00DB - public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427547; + // aapt resource value: 0x7F0D00CF + public static int TextAppearance_AppCompat_Body2 = 2131558607; - // aapt resource value: 0x7F0B00DC - public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427548; + // aapt resource value: 0x7F0D00D0 + public static int TextAppearance_AppCompat_Button = 2131558608; - // aapt resource value: 0x7F0B00DD - public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427549; + // aapt resource value: 0x7F0D00D1 + public static int TextAppearance_AppCompat_Caption = 2131558609; - // aapt resource value: 0x7F0B00DE - public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427550; + // aapt resource value: 0x7F0D00D2 + public static int TextAppearance_AppCompat_Display1 = 2131558610; - // aapt resource value: 0x7F0B00DF - public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427551; + // aapt resource value: 0x7F0D00D3 + public static int TextAppearance_AppCompat_Display2 = 2131558611; - // aapt resource value: 0x7F0B00E0 - public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131427552; + // aapt resource value: 0x7F0D00D4 + public static int TextAppearance_AppCompat_Display3 = 2131558612; - // aapt resource value: 0x7F0B00E1 - public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427553; + // aapt resource value: 0x7F0D00D5 + public static int TextAppearance_AppCompat_Display4 = 2131558613; - // aapt resource value: 0x7F0B00E2 - public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131427554; + // aapt resource value: 0x7F0D00D6 + public static int TextAppearance_AppCompat_Headline = 2131558614; - // aapt resource value: 0x7F0B00E3 - public static int TextAppearance_AppCompat_Widget_Button = 2131427555; + // aapt resource value: 0x7F0D00D7 + public static int TextAppearance_AppCompat_Inverse = 2131558615; - // aapt resource value: 0x7F0B00E4 - public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427556; + // aapt resource value: 0x7F0D00D8 + public static int TextAppearance_AppCompat_Large = 2131558616; - // aapt resource value: 0x7F0B00E5 - public static int TextAppearance_AppCompat_Widget_Button_Colored = 2131427557; + // aapt resource value: 0x7F0D00D9 + public static int TextAppearance_AppCompat_Large_Inverse = 2131558617; - // aapt resource value: 0x7F0B00E6 - public static int TextAppearance_AppCompat_Widget_Button_Inverse = 2131427558; + // aapt resource value: 0x7F0D00DA + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131558618; - // aapt resource value: 0x7F0B00E7 - public static int TextAppearance_AppCompat_Widget_DropDownItem = 2131427559; + // aapt resource value: 0x7F0D00DB + public static int TextAppearance_AppCompat_Light_SearchResult_Title = 2131558619; - // aapt resource value: 0x7F0B00E8 - public static int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427560; + // aapt resource value: 0x7F0D00DC + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131558620; - // aapt resource value: 0x7F0B00E9 - public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427561; + // aapt resource value: 0x7F0D00DD + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131558621; - // aapt resource value: 0x7F0B00EA - public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427562; + // aapt resource value: 0x7F0D00DE + public static int TextAppearance_AppCompat_Medium = 2131558622; - // aapt resource value: 0x7F0B00EB - public static int TextAppearance_AppCompat_Widget_Switch = 2131427563; + // aapt resource value: 0x7F0D00DF + public static int TextAppearance_AppCompat_Medium_Inverse = 2131558623; - // aapt resource value: 0x7F0B00EC - public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427564; + // aapt resource value: 0x7F0D00E0 + public static int TextAppearance_AppCompat_Menu = 2131558624; - // aapt resource value: 0x7F0B00ED - public static int TextAppearance_Compat_Notification = 2131427565; + // aapt resource value: 0x7F0D00E1 + public static int TextAppearance_AppCompat_SearchResult_Subtitle = 2131558625; - // aapt resource value: 0x7F0B00EE - public static int TextAppearance_Compat_Notification_Info = 2131427566; + // aapt resource value: 0x7F0D00E2 + public static int TextAppearance_AppCompat_SearchResult_Title = 2131558626; - // aapt resource value: 0x7F0B00EF - public static int TextAppearance_Compat_Notification_Info_Media = 2131427567; + // aapt resource value: 0x7F0D00E3 + public static int TextAppearance_AppCompat_Small = 2131558627; - // aapt resource value: 0x7F0B00F0 - public static int TextAppearance_Compat_Notification_Line2 = 2131427568; + // aapt resource value: 0x7F0D00E4 + public static int TextAppearance_AppCompat_Small_Inverse = 2131558628; - // aapt resource value: 0x7F0B00F1 - public static int TextAppearance_Compat_Notification_Line2_Media = 2131427569; + // aapt resource value: 0x7F0D00E5 + public static int TextAppearance_AppCompat_Subhead = 2131558629; - // aapt resource value: 0x7F0B00F2 - public static int TextAppearance_Compat_Notification_Media = 2131427570; + // aapt resource value: 0x7F0D00E6 + public static int TextAppearance_AppCompat_Subhead_Inverse = 2131558630; - // aapt resource value: 0x7F0B00F3 - public static int TextAppearance_Compat_Notification_Time = 2131427571; + // aapt resource value: 0x7F0D00E7 + public static int TextAppearance_AppCompat_Title = 2131558631; - // aapt resource value: 0x7F0B00F4 - public static int TextAppearance_Compat_Notification_Time_Media = 2131427572; + // aapt resource value: 0x7F0D00E8 + public static int TextAppearance_AppCompat_Title_Inverse = 2131558632; - // aapt resource value: 0x7F0B00F5 - public static int TextAppearance_Compat_Notification_Title = 2131427573; + // aapt resource value: 0x7F0D00E9 + public static int TextAppearance_AppCompat_Tooltip = 2131558633; - // aapt resource value: 0x7F0B00F6 - public static int TextAppearance_Compat_Notification_Title_Media = 2131427574; + // aapt resource value: 0x7F0D00EA + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131558634; - // aapt resource value: 0x7F0B00F7 - public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427575; + // aapt resource value: 0x7F0D00EB + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131558635; - // aapt resource value: 0x7F0B00F8 - public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427576; + // aapt resource value: 0x7F0D00EC + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131558636; - // aapt resource value: 0x7F0B00F9 - public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427577; + // aapt resource value: 0x7F0D00ED + public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131558637; - // aapt resource value: 0x7F0B010F - public static int ThemeOverlay_AppCompat = 2131427599; + // aapt resource value: 0x7F0D00EE + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131558638; - // aapt resource value: 0x7F0B0110 - public static int ThemeOverlay_AppCompat_ActionBar = 2131427600; + // aapt resource value: 0x7F0D00EF + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131558639; - // aapt resource value: 0x7F0B0111 - public static int ThemeOverlay_AppCompat_Dark = 2131427601; + // aapt resource value: 0x7F0D00F0 + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131558640; - // aapt resource value: 0x7F0B0112 - public static int ThemeOverlay_AppCompat_Dark_ActionBar = 2131427602; + // aapt resource value: 0x7F0D00F1 + public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131558641; - // aapt resource value: 0x7F0B0113 - public static int ThemeOverlay_AppCompat_Dialog = 2131427603; + // aapt resource value: 0x7F0D00F2 + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131558642; - // aapt resource value: 0x7F0B0114 - public static int ThemeOverlay_AppCompat_Dialog_Alert = 2131427604; + // aapt resource value: 0x7F0D00F3 + public static int TextAppearance_AppCompat_Widget_Button = 2131558643; - // aapt resource value: 0x7F0B0115 - public static int ThemeOverlay_AppCompat_Light = 2131427605; + // aapt resource value: 0x7F0D00F4 + public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131558644; - // aapt resource value: 0x7F0B00FA - public static int Theme_AppCompat = 2131427578; + // aapt resource value: 0x7F0D00F5 + public static int TextAppearance_AppCompat_Widget_Button_Colored = 2131558645; - // aapt resource value: 0x7F0B00FB - public static int Theme_AppCompat_CompactMenu = 2131427579; + // aapt resource value: 0x7F0D00F6 + public static int TextAppearance_AppCompat_Widget_Button_Inverse = 2131558646; - // aapt resource value: 0x7F0B00FC - public static int Theme_AppCompat_DayNight = 2131427580; + // aapt resource value: 0x7F0D00F7 + public static int TextAppearance_AppCompat_Widget_DropDownItem = 2131558647; - // aapt resource value: 0x7F0B00FD - public static int Theme_AppCompat_DayNight_DarkActionBar = 2131427581; + // aapt resource value: 0x7F0D00F8 + public static int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131558648; - // aapt resource value: 0x7F0B00FE - public static int Theme_AppCompat_DayNight_Dialog = 2131427582; + // aapt resource value: 0x7F0D00F9 + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131558649; - // aapt resource value: 0x7F0B0101 - public static int Theme_AppCompat_DayNight_DialogWhenLarge = 2131427585; + // aapt resource value: 0x7F0D00FA + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131558650; - // aapt resource value: 0x7F0B00FF - public static int Theme_AppCompat_DayNight_Dialog_Alert = 2131427583; + // aapt resource value: 0x7F0D00FB + public static int TextAppearance_AppCompat_Widget_Switch = 2131558651; - // aapt resource value: 0x7F0B0100 - public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131427584; + // aapt resource value: 0x7F0D00FC + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131558652; - // aapt resource value: 0x7F0B0102 - public static int Theme_AppCompat_DayNight_NoActionBar = 2131427586; + // aapt resource value: 0x7F0D00FD + public static int TextAppearance_Compat_Notification = 2131558653; - // aapt resource value: 0x7F0B0103 - public static int Theme_AppCompat_Dialog = 2131427587; + // aapt resource value: 0x7F0D00FE + public static int TextAppearance_Compat_Notification_Info = 2131558654; - // aapt resource value: 0x7F0B0106 - public static int Theme_AppCompat_DialogWhenLarge = 2131427590; + // aapt resource value: 0x7F0D00FF + public static int TextAppearance_Compat_Notification_Info_Media = 2131558655; - // aapt resource value: 0x7F0B0104 - public static int Theme_AppCompat_Dialog_Alert = 2131427588; + // aapt resource value: 0x7F0D0100 + public static int TextAppearance_Compat_Notification_Line2 = 2131558656; - // aapt resource value: 0x7F0B0105 - public static int Theme_AppCompat_Dialog_MinWidth = 2131427589; + // aapt resource value: 0x7F0D0101 + public static int TextAppearance_Compat_Notification_Line2_Media = 2131558657; - // aapt resource value: 0x7F0B0107 - public static int Theme_AppCompat_Light = 2131427591; + // aapt resource value: 0x7F0D0102 + public static int TextAppearance_Compat_Notification_Media = 2131558658; - // aapt resource value: 0x7F0B0108 - public static int Theme_AppCompat_Light_DarkActionBar = 2131427592; + // aapt resource value: 0x7F0D0103 + public static int TextAppearance_Compat_Notification_Time = 2131558659; - // aapt resource value: 0x7F0B0109 - public static int Theme_AppCompat_Light_Dialog = 2131427593; + // aapt resource value: 0x7F0D0104 + public static int TextAppearance_Compat_Notification_Time_Media = 2131558660; - // aapt resource value: 0x7F0B010C - public static int Theme_AppCompat_Light_DialogWhenLarge = 2131427596; + // aapt resource value: 0x7F0D0105 + public static int TextAppearance_Compat_Notification_Title = 2131558661; - // aapt resource value: 0x7F0B010A - public static int Theme_AppCompat_Light_Dialog_Alert = 2131427594; + // aapt resource value: 0x7F0D0106 + public static int TextAppearance_Compat_Notification_Title_Media = 2131558662; - // aapt resource value: 0x7F0B010B - public static int Theme_AppCompat_Light_Dialog_MinWidth = 2131427595; + // aapt resource value: 0x7F0D0107 + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131558663; - // aapt resource value: 0x7F0B010D - public static int Theme_AppCompat_Light_NoActionBar = 2131427597; + // aapt resource value: 0x7F0D0108 + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131558664; - // aapt resource value: 0x7F0B010E - public static int Theme_AppCompat_NoActionBar = 2131427598; + // aapt resource value: 0x7F0D0109 + public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131558665; - // aapt resource value: 0x7F0B0116 - public static int Widget_AppCompat_ActionBar = 2131427606; + // aapt resource value: 0x7F0D011F + public static int ThemeOverlay_AppCompat = 2131558687; - // aapt resource value: 0x7F0B0117 - public static int Widget_AppCompat_ActionBar_Solid = 2131427607; + // aapt resource value: 0x7F0D0120 + public static int ThemeOverlay_AppCompat_ActionBar = 2131558688; - // aapt resource value: 0x7F0B0118 - public static int Widget_AppCompat_ActionBar_TabBar = 2131427608; + // aapt resource value: 0x7F0D0121 + public static int ThemeOverlay_AppCompat_Dark = 2131558689; - // aapt resource value: 0x7F0B0119 - public static int Widget_AppCompat_ActionBar_TabText = 2131427609; + // aapt resource value: 0x7F0D0122 + public static int ThemeOverlay_AppCompat_Dark_ActionBar = 2131558690; - // aapt resource value: 0x7F0B011A - public static int Widget_AppCompat_ActionBar_TabView = 2131427610; + // aapt resource value: 0x7F0D0123 + public static int ThemeOverlay_AppCompat_Dialog = 2131558691; - // aapt resource value: 0x7F0B011B - public static int Widget_AppCompat_ActionButton = 2131427611; + // aapt resource value: 0x7F0D0124 + public static int ThemeOverlay_AppCompat_Dialog_Alert = 2131558692; - // aapt resource value: 0x7F0B011C - public static int Widget_AppCompat_ActionButton_CloseMode = 2131427612; + // aapt resource value: 0x7F0D0125 + public static int ThemeOverlay_AppCompat_Light = 2131558693; - // aapt resource value: 0x7F0B011D - public static int Widget_AppCompat_ActionButton_Overflow = 2131427613; + // aapt resource value: 0x7F0D010A + public static int Theme_AppCompat = 2131558666; - // aapt resource value: 0x7F0B011E - public static int Widget_AppCompat_ActionMode = 2131427614; + // aapt resource value: 0x7F0D010B + public static int Theme_AppCompat_CompactMenu = 2131558667; - // aapt resource value: 0x7F0B011F - public static int Widget_AppCompat_ActivityChooserView = 2131427615; + // aapt resource value: 0x7F0D010C + public static int Theme_AppCompat_DayNight = 2131558668; - // aapt resource value: 0x7F0B0120 - public static int Widget_AppCompat_AutoCompleteTextView = 2131427616; + // aapt resource value: 0x7F0D010D + public static int Theme_AppCompat_DayNight_DarkActionBar = 2131558669; - // aapt resource value: 0x7F0B0121 - public static int Widget_AppCompat_Button = 2131427617; + // aapt resource value: 0x7F0D010E + public static int Theme_AppCompat_DayNight_Dialog = 2131558670; - // aapt resource value: 0x7F0B0127 - public static int Widget_AppCompat_ButtonBar = 2131427623; + // aapt resource value: 0x7F0D0111 + public static int Theme_AppCompat_DayNight_DialogWhenLarge = 2131558673; - // aapt resource value: 0x7F0B0128 - public static int Widget_AppCompat_ButtonBar_AlertDialog = 2131427624; + // aapt resource value: 0x7F0D010F + public static int Theme_AppCompat_DayNight_Dialog_Alert = 2131558671; - // aapt resource value: 0x7F0B0122 - public static int Widget_AppCompat_Button_Borderless = 2131427618; + // aapt resource value: 0x7F0D0110 + public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131558672; - // aapt resource value: 0x7F0B0123 - public static int Widget_AppCompat_Button_Borderless_Colored = 2131427619; + // aapt resource value: 0x7F0D0112 + public static int Theme_AppCompat_DayNight_NoActionBar = 2131558674; - // aapt resource value: 0x7F0B0124 - public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427620; + // aapt resource value: 0x7F0D0113 + public static int Theme_AppCompat_Dialog = 2131558675; - // aapt resource value: 0x7F0B0125 - public static int Widget_AppCompat_Button_Colored = 2131427621; + // aapt resource value: 0x7F0D0116 + public static int Theme_AppCompat_DialogWhenLarge = 2131558678; - // aapt resource value: 0x7F0B0126 - public static int Widget_AppCompat_Button_Small = 2131427622; + // aapt resource value: 0x7F0D0114 + public static int Theme_AppCompat_Dialog_Alert = 2131558676; - // aapt resource value: 0x7F0B0129 - public static int Widget_AppCompat_CompoundButton_CheckBox = 2131427625; + // aapt resource value: 0x7F0D0115 + public static int Theme_AppCompat_Dialog_MinWidth = 2131558677; - // aapt resource value: 0x7F0B012A - public static int Widget_AppCompat_CompoundButton_RadioButton = 2131427626; + // aapt resource value: 0x7F0D0117 + public static int Theme_AppCompat_Light = 2131558679; - // aapt resource value: 0x7F0B012B - public static int Widget_AppCompat_CompoundButton_Switch = 2131427627; + // aapt resource value: 0x7F0D0118 + public static int Theme_AppCompat_Light_DarkActionBar = 2131558680; - // aapt resource value: 0x7F0B012C - public static int Widget_AppCompat_DrawerArrowToggle = 2131427628; + // aapt resource value: 0x7F0D0119 + public static int Theme_AppCompat_Light_Dialog = 2131558681; - // aapt resource value: 0x7F0B012D - public static int Widget_AppCompat_DropDownItem_Spinner = 2131427629; + // aapt resource value: 0x7F0D011C + public static int Theme_AppCompat_Light_DialogWhenLarge = 2131558684; - // aapt resource value: 0x7F0B012E - public static int Widget_AppCompat_EditText = 2131427630; + // aapt resource value: 0x7F0D011A + public static int Theme_AppCompat_Light_Dialog_Alert = 2131558682; - // aapt resource value: 0x7F0B012F - public static int Widget_AppCompat_ImageButton = 2131427631; + // aapt resource value: 0x7F0D011B + public static int Theme_AppCompat_Light_Dialog_MinWidth = 2131558683; - // aapt resource value: 0x7F0B0130 - public static int Widget_AppCompat_Light_ActionBar = 2131427632; + // aapt resource value: 0x7F0D011D + public static int Theme_AppCompat_Light_NoActionBar = 2131558685; - // aapt resource value: 0x7F0B0131 - public static int Widget_AppCompat_Light_ActionBar_Solid = 2131427633; + // aapt resource value: 0x7F0D011E + public static int Theme_AppCompat_NoActionBar = 2131558686; - // aapt resource value: 0x7F0B0132 - public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131427634; + // aapt resource value: 0x7F0D0126 + public static int Widget_AppCompat_ActionBar = 2131558694; - // aapt resource value: 0x7F0B0133 - public static int Widget_AppCompat_Light_ActionBar_TabBar = 2131427635; + // aapt resource value: 0x7F0D0127 + public static int Widget_AppCompat_ActionBar_Solid = 2131558695; - // aapt resource value: 0x7F0B0134 - public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131427636; + // aapt resource value: 0x7F0D0128 + public static int Widget_AppCompat_ActionBar_TabBar = 2131558696; - // aapt resource value: 0x7F0B0135 - public static int Widget_AppCompat_Light_ActionBar_TabText = 2131427637; + // aapt resource value: 0x7F0D0129 + public static int Widget_AppCompat_ActionBar_TabText = 2131558697; - // aapt resource value: 0x7F0B0136 - public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427638; + // aapt resource value: 0x7F0D012A + public static int Widget_AppCompat_ActionBar_TabView = 2131558698; - // aapt resource value: 0x7F0B0137 - public static int Widget_AppCompat_Light_ActionBar_TabView = 2131427639; + // aapt resource value: 0x7F0D012B + public static int Widget_AppCompat_ActionButton = 2131558699; - // aapt resource value: 0x7F0B0138 - public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131427640; + // aapt resource value: 0x7F0D012C + public static int Widget_AppCompat_ActionButton_CloseMode = 2131558700; - // aapt resource value: 0x7F0B0139 - public static int Widget_AppCompat_Light_ActionButton = 2131427641; + // aapt resource value: 0x7F0D012D + public static int Widget_AppCompat_ActionButton_Overflow = 2131558701; - // aapt resource value: 0x7F0B013A - public static int Widget_AppCompat_Light_ActionButton_CloseMode = 2131427642; + // aapt resource value: 0x7F0D012E + public static int Widget_AppCompat_ActionMode = 2131558702; - // aapt resource value: 0x7F0B013B - public static int Widget_AppCompat_Light_ActionButton_Overflow = 2131427643; + // aapt resource value: 0x7F0D012F + public static int Widget_AppCompat_ActivityChooserView = 2131558703; - // aapt resource value: 0x7F0B013C - public static int Widget_AppCompat_Light_ActionMode_Inverse = 2131427644; + // aapt resource value: 0x7F0D0130 + public static int Widget_AppCompat_AutoCompleteTextView = 2131558704; - // aapt resource value: 0x7F0B013D - public static int Widget_AppCompat_Light_ActivityChooserView = 2131427645; + // aapt resource value: 0x7F0D0131 + public static int Widget_AppCompat_Button = 2131558705; - // aapt resource value: 0x7F0B013E - public static int Widget_AppCompat_Light_AutoCompleteTextView = 2131427646; + // aapt resource value: 0x7F0D0137 + public static int Widget_AppCompat_ButtonBar = 2131558711; - // aapt resource value: 0x7F0B013F - public static int Widget_AppCompat_Light_DropDownItem_Spinner = 2131427647; + // aapt resource value: 0x7F0D0138 + public static int Widget_AppCompat_ButtonBar_AlertDialog = 2131558712; - // aapt resource value: 0x7F0B0140 - public static int Widget_AppCompat_Light_ListPopupWindow = 2131427648; + // aapt resource value: 0x7F0D0132 + public static int Widget_AppCompat_Button_Borderless = 2131558706; - // aapt resource value: 0x7F0B0141 - public static int Widget_AppCompat_Light_ListView_DropDown = 2131427649; + // aapt resource value: 0x7F0D0133 + public static int Widget_AppCompat_Button_Borderless_Colored = 2131558707; - // aapt resource value: 0x7F0B0142 - public static int Widget_AppCompat_Light_PopupMenu = 2131427650; + // aapt resource value: 0x7F0D0134 + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131558708; - // aapt resource value: 0x7F0B0143 - public static int Widget_AppCompat_Light_PopupMenu_Overflow = 2131427651; + // aapt resource value: 0x7F0D0135 + public static int Widget_AppCompat_Button_Colored = 2131558709; - // aapt resource value: 0x7F0B0144 - public static int Widget_AppCompat_Light_SearchView = 2131427652; + // aapt resource value: 0x7F0D0136 + public static int Widget_AppCompat_Button_Small = 2131558710; - // aapt resource value: 0x7F0B0145 - public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131427653; + // aapt resource value: 0x7F0D0139 + public static int Widget_AppCompat_CompoundButton_CheckBox = 2131558713; - // aapt resource value: 0x7F0B0146 - public static int Widget_AppCompat_ListMenuView = 2131427654; + // aapt resource value: 0x7F0D013A + public static int Widget_AppCompat_CompoundButton_RadioButton = 2131558714; - // aapt resource value: 0x7F0B0147 - public static int Widget_AppCompat_ListPopupWindow = 2131427655; + // aapt resource value: 0x7F0D013B + public static int Widget_AppCompat_CompoundButton_Switch = 2131558715; - // aapt resource value: 0x7F0B0148 - public static int Widget_AppCompat_ListView = 2131427656; + // aapt resource value: 0x7F0D013C + public static int Widget_AppCompat_DrawerArrowToggle = 2131558716; - // aapt resource value: 0x7F0B0149 - public static int Widget_AppCompat_ListView_DropDown = 2131427657; + // aapt resource value: 0x7F0D013D + public static int Widget_AppCompat_DropDownItem_Spinner = 2131558717; - // aapt resource value: 0x7F0B014A - public static int Widget_AppCompat_ListView_Menu = 2131427658; + // aapt resource value: 0x7F0D013E + public static int Widget_AppCompat_EditText = 2131558718; - // aapt resource value: 0x7F0B014B - public static int Widget_AppCompat_PopupMenu = 2131427659; + // aapt resource value: 0x7F0D013F + public static int Widget_AppCompat_ImageButton = 2131558719; - // aapt resource value: 0x7F0B014C - public static int Widget_AppCompat_PopupMenu_Overflow = 2131427660; + // aapt resource value: 0x7F0D0140 + public static int Widget_AppCompat_Light_ActionBar = 2131558720; - // aapt resource value: 0x7F0B014D - public static int Widget_AppCompat_PopupWindow = 2131427661; + // aapt resource value: 0x7F0D0141 + public static int Widget_AppCompat_Light_ActionBar_Solid = 2131558721; - // aapt resource value: 0x7F0B014E - public static int Widget_AppCompat_ProgressBar = 2131427662; + // aapt resource value: 0x7F0D0142 + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131558722; - // aapt resource value: 0x7F0B014F - public static int Widget_AppCompat_ProgressBar_Horizontal = 2131427663; + // aapt resource value: 0x7F0D0143 + public static int Widget_AppCompat_Light_ActionBar_TabBar = 2131558723; - // aapt resource value: 0x7F0B0150 - public static int Widget_AppCompat_RatingBar = 2131427664; + // aapt resource value: 0x7F0D0144 + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131558724; - // aapt resource value: 0x7F0B0151 - public static int Widget_AppCompat_RatingBar_Indicator = 2131427665; + // aapt resource value: 0x7F0D0145 + public static int Widget_AppCompat_Light_ActionBar_TabText = 2131558725; - // aapt resource value: 0x7F0B0152 - public static int Widget_AppCompat_RatingBar_Small = 2131427666; + // aapt resource value: 0x7F0D0146 + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131558726; - // aapt resource value: 0x7F0B0153 - public static int Widget_AppCompat_SearchView = 2131427667; + // aapt resource value: 0x7F0D0147 + public static int Widget_AppCompat_Light_ActionBar_TabView = 2131558727; - // aapt resource value: 0x7F0B0154 - public static int Widget_AppCompat_SearchView_ActionBar = 2131427668; + // aapt resource value: 0x7F0D0148 + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131558728; - // aapt resource value: 0x7F0B0155 - public static int Widget_AppCompat_SeekBar = 2131427669; + // aapt resource value: 0x7F0D0149 + public static int Widget_AppCompat_Light_ActionButton = 2131558729; - // aapt resource value: 0x7F0B0156 - public static int Widget_AppCompat_SeekBar_Discrete = 2131427670; + // aapt resource value: 0x7F0D014A + public static int Widget_AppCompat_Light_ActionButton_CloseMode = 2131558730; - // aapt resource value: 0x7F0B0157 - public static int Widget_AppCompat_Spinner = 2131427671; + // aapt resource value: 0x7F0D014B + public static int Widget_AppCompat_Light_ActionButton_Overflow = 2131558731; - // aapt resource value: 0x7F0B0158 - public static int Widget_AppCompat_Spinner_DropDown = 2131427672; + // aapt resource value: 0x7F0D014C + public static int Widget_AppCompat_Light_ActionMode_Inverse = 2131558732; - // aapt resource value: 0x7F0B0159 - public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131427673; + // aapt resource value: 0x7F0D014D + public static int Widget_AppCompat_Light_ActivityChooserView = 2131558733; - // aapt resource value: 0x7F0B015A - public static int Widget_AppCompat_Spinner_Underlined = 2131427674; + // aapt resource value: 0x7F0D014E + public static int Widget_AppCompat_Light_AutoCompleteTextView = 2131558734; - // aapt resource value: 0x7F0B015B - public static int Widget_AppCompat_TextView_SpinnerItem = 2131427675; + // aapt resource value: 0x7F0D014F + public static int Widget_AppCompat_Light_DropDownItem_Spinner = 2131558735; - // aapt resource value: 0x7F0B015C - public static int Widget_AppCompat_Toolbar = 2131427676; + // aapt resource value: 0x7F0D0150 + public static int Widget_AppCompat_Light_ListPopupWindow = 2131558736; - // aapt resource value: 0x7F0B015D - public static int Widget_AppCompat_Toolbar_Button_Navigation = 2131427677; + // aapt resource value: 0x7F0D0151 + public static int Widget_AppCompat_Light_ListView_DropDown = 2131558737; - // aapt resource value: 0x7F0B015E - public static int Widget_Compat_NotificationActionContainer = 2131427678; + // aapt resource value: 0x7F0D0152 + public static int Widget_AppCompat_Light_PopupMenu = 2131558738; - // aapt resource value: 0x7F0B015F - public static int Widget_Compat_NotificationActionText = 2131427679; + // aapt resource value: 0x7F0D0153 + public static int Widget_AppCompat_Light_PopupMenu_Overflow = 2131558739; - // aapt resource value: 0x7F0B0160 - public static int Widget_Support_CoordinatorLayout = 2131427680; + // aapt resource value: 0x7F0D0154 + public static int Widget_AppCompat_Light_SearchView = 2131558740; + + // aapt resource value: 0x7F0D0155 + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131558741; + + // aapt resource value: 0x7F0D0156 + public static int Widget_AppCompat_ListMenuView = 2131558742; + + // aapt resource value: 0x7F0D0157 + public static int Widget_AppCompat_ListPopupWindow = 2131558743; + + // aapt resource value: 0x7F0D0158 + public static int Widget_AppCompat_ListView = 2131558744; + + // aapt resource value: 0x7F0D0159 + public static int Widget_AppCompat_ListView_DropDown = 2131558745; + + // aapt resource value: 0x7F0D015A + public static int Widget_AppCompat_ListView_Menu = 2131558746; + + // aapt resource value: 0x7F0D015B + public static int Widget_AppCompat_PopupMenu = 2131558747; + + // aapt resource value: 0x7F0D015C + public static int Widget_AppCompat_PopupMenu_Overflow = 2131558748; + + // aapt resource value: 0x7F0D015D + public static int Widget_AppCompat_PopupWindow = 2131558749; + + // aapt resource value: 0x7F0D015E + public static int Widget_AppCompat_ProgressBar = 2131558750; + + // aapt resource value: 0x7F0D015F + public static int Widget_AppCompat_ProgressBar_Horizontal = 2131558751; + + // aapt resource value: 0x7F0D0160 + public static int Widget_AppCompat_RatingBar = 2131558752; + + // aapt resource value: 0x7F0D0161 + public static int Widget_AppCompat_RatingBar_Indicator = 2131558753; + + // aapt resource value: 0x7F0D0162 + public static int Widget_AppCompat_RatingBar_Small = 2131558754; + + // aapt resource value: 0x7F0D0163 + public static int Widget_AppCompat_SearchView = 2131558755; + + // aapt resource value: 0x7F0D0164 + public static int Widget_AppCompat_SearchView_ActionBar = 2131558756; + + // aapt resource value: 0x7F0D0165 + public static int Widget_AppCompat_SeekBar = 2131558757; + + // aapt resource value: 0x7F0D0166 + public static int Widget_AppCompat_SeekBar_Discrete = 2131558758; + + // aapt resource value: 0x7F0D0167 + public static int Widget_AppCompat_Spinner = 2131558759; + + // aapt resource value: 0x7F0D0168 + public static int Widget_AppCompat_Spinner_DropDown = 2131558760; + + // aapt resource value: 0x7F0D0169 + public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131558761; + + // aapt resource value: 0x7F0D016A + public static int Widget_AppCompat_Spinner_Underlined = 2131558762; + + // aapt resource value: 0x7F0D016B + public static int Widget_AppCompat_TextView_SpinnerItem = 2131558763; + + // aapt resource value: 0x7F0D016C + public static int Widget_AppCompat_Toolbar = 2131558764; + + // aapt resource value: 0x7F0D016D + public static int Widget_AppCompat_Toolbar_Button_Navigation = 2131558765; + + // aapt resource value: 0x7F0D016E + public static int Widget_Compat_NotificationActionContainer = 2131558766; + + // aapt resource value: 0x7F0D016F + public static int Widget_Compat_NotificationActionText = 2131558767; + + // aapt resource value: 0x7F0D0170 + public static int Widget_Support_CoordinatorLayout = 2131558768; static Style() { @@ -3737,37 +4738,37 @@ namespace keepass2android public partial class Styleable { - // aapt resource value: { 0x7F020031,0x7F020032,0x7F020033,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F02005F,0x7F020064,0x7F020065,0x7F020070,0x7F020080,0x7F020081,0x7F020082,0x7F020083,0x7F020084,0x7F020089,0x7F02008C,0x7F0200A2,0x7F0200A9,0x7F0200B4,0x7F0200B7,0x7F0200B8,0x7F0200D3,0x7F0200D6,0x7F0200F1,0x7F0200FA } + // aapt resource value: { 0x7F020050,0x7F020051,0x7F020052,0x7F020077,0x7F020078,0x7F020079,0x7F02007A,0x7F02007B,0x7F02007C,0x7F02007F,0x7F020085,0x7F020086,0x7F020091,0x7F0200A2,0x7F0200A3,0x7F0200A5,0x7F0200A6,0x7F0200A7,0x7F0200AD,0x7F0200B0,0x7F0200C6,0x7F0200CD,0x7F0200D8,0x7F0200DB,0x7F0200DC,0x7F0200F7,0x7F0200FA,0x7F020115,0x7F02011E } public static int[] ActionBar = new int[] { - 2130837553, - 2130837554, - 2130837555, - 2130837591, - 2130837592, - 2130837593, - 2130837594, - 2130837595, - 2130837596, - 2130837599, - 2130837604, - 2130837605, - 2130837616, - 2130837632, - 2130837633, - 2130837634, - 2130837635, - 2130837636, - 2130837641, - 2130837644, + 2130837584, + 2130837585, + 2130837586, + 2130837623, + 2130837624, + 2130837625, + 2130837626, + 2130837627, + 2130837628, + 2130837631, + 2130837637, + 2130837638, + 2130837649, 2130837666, - 2130837673, - 2130837684, - 2130837687, - 2130837688, - 2130837715, - 2130837718, - 2130837745, - 2130837754}; + 2130837667, + 2130837669, + 2130837670, + 2130837671, + 2130837677, + 2130837680, + 2130837702, + 2130837709, + 2130837720, + 2130837723, + 2130837724, + 2130837751, + 2130837754, + 2130837781, + 2130837790}; // aapt resource value: { 0x10100B3 } public static int[] ActionBarLayout = new int[] { @@ -3874,14 +4875,14 @@ namespace keepass2android public static int[] ActionMenuView = new int[] { -1}; - // aapt resource value: { 0x7F020031,0x7F020032,0x7F020047,0x7F020080,0x7F0200D6,0x7F0200FA } + // aapt resource value: { 0x7F020050,0x7F020051,0x7F020067,0x7F0200A2,0x7F0200FA,0x7F02011E } public static int[] ActionMode = new int[] { - 2130837553, - 2130837554, - 2130837575, - 2130837632, - 2130837718, - 2130837754}; + 2130837584, + 2130837585, + 2130837607, + 2130837666, + 2130837754, + 2130837790}; // aapt resource value: 0 public static int ActionMode_background = 0; @@ -3901,10 +4902,10 @@ namespace keepass2android // aapt resource value: 5 public static int ActionMode_titleTextStyle = 5; - // aapt resource value: { 0x7F020071,0x7F02008A } + // aapt resource value: { 0x7F020093,0x7F0200AE } public static int[] ActivityChooserView = new int[] { - 2130837617, - 2130837642}; + 2130837651, + 2130837678}; // aapt resource value: 0 public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; @@ -3912,16 +4913,39 @@ namespace keepass2android // aapt resource value: 1 public static int ActivityChooserView_initialActivityCount = 1; - // aapt resource value: { 0x10100F2,0x7F02003E,0x7F02003F,0x7F020099,0x7F02009A,0x7F0200A6,0x7F0200C8,0x7F0200C9 } + // aapt resource value: { 0x7F020065,0x7F020081,0x7F020092,0x7F0200A4,0x7F0200AA } + public static int[] AfcSearchView = new int[] { + 2130837605, + 2130837633, + 2130837650, + 2130837668, + 2130837674}; + + // aapt resource value: 0 + public static int AfcSearchView_closable = 0; + + // aapt resource value: 1 + public static int AfcSearchView_delayTimeSubmission = 1; + + // aapt resource value: 2 + public static int AfcSearchView_enabled = 2; + + // aapt resource value: 3 + public static int AfcSearchView_hint = 3; + + // aapt resource value: 4 + public static int AfcSearchView_iconified = 4; + + // aapt resource value: { 0x10100F2,0x7F02005D,0x7F02005E,0x7F0200BD,0x7F0200BE,0x7F0200CA,0x7F0200EC,0x7F0200ED } public static int[] AlertDialog = new int[] { 16842994, - 2130837566, - 2130837567, - 2130837657, - 2130837658, - 2130837670, - 2130837704, - 2130837705}; + 2130837597, + 2130837598, + 2130837693, + 2130837694, + 2130837706, + 2130837740, + 2130837741}; // aapt resource value: 0 public static int AlertDialog_android_layout = 0; @@ -4004,12 +5028,12 @@ namespace keepass2android // aapt resource value: 1 public static int AnimatedStateListDrawableTransition_android_toId = 1; - // aapt resource value: { 0x1010119,0x7F0200CE,0x7F0200EF,0x7F0200F0 } + // aapt resource value: { 0x1010119,0x7F0200F2,0x7F020113,0x7F020114 } public static int[] AppCompatImageView = new int[] { 16843033, - 2130837710, - 2130837743, - 2130837744}; + 2130837746, + 2130837779, + 2130837780}; // aapt resource value: 0 public static int AppCompatImageView_android_src = 0; @@ -4023,12 +5047,12 @@ namespace keepass2android // aapt resource value: 3 public static int AppCompatImageView_tintMode = 3; - // aapt resource value: { 0x1010142,0x7F0200EC,0x7F0200ED,0x7F0200EE } + // aapt resource value: { 0x1010142,0x7F020110,0x7F020111,0x7F020112 } public static int[] AppCompatSeekBar = new int[] { 16843074, - 2130837740, - 2130837741, - 2130837742}; + 2130837776, + 2130837777, + 2130837778}; // aapt resource value: 0 public static int AppCompatSeekBar_android_thumb = 0; @@ -4073,19 +5097,19 @@ namespace keepass2android // aapt resource value: 0 public static int AppCompatTextHelper_android_textAppearance = 0; - // aapt resource value: { 0x1010034,0x7F02002C,0x7F02002D,0x7F02002E,0x7F02002F,0x7F020030,0x7F020072,0x7F020074,0x7F02008E,0x7F020096,0x7F0200DC } + // aapt resource value: { 0x1010034,0x7F02004B,0x7F02004C,0x7F02004D,0x7F02004E,0x7F02004F,0x7F020094,0x7F020096,0x7F0200B2,0x7F0200BA,0x7F020100 } public static int[] AppCompatTextView = new int[] { 16842804, - 2130837548, - 2130837549, - 2130837550, - 2130837551, - 2130837552, - 2130837618, - 2130837620, - 2130837646, + 2130837579, + 2130837580, + 2130837581, + 2130837582, + 2130837583, + 2130837652, 2130837654, - 2130837724}; + 2130837682, + 2130837690, + 2130837760}; // aapt resource value: 0 public static int AppCompatTextView_android_textAppearance = 0; @@ -4120,7 +5144,7 @@ namespace keepass2android // aapt resource value: 10 public static int AppCompatTextView_textAllCaps = 10; - // aapt resource value: { 0x1010057,0x10100AE,0x7F020000,0x7F020001,0x7F020002,0x7F020003,0x7F020004,0x7F020005,0x7F020006,0x7F020007,0x7F020008,0x7F020009,0x7F02000A,0x7F02000B,0x7F02000C,0x7F02000E,0x7F02000F,0x7F020010,0x7F020011,0x7F020012,0x7F020013,0x7F020014,0x7F020015,0x7F020016,0x7F020017,0x7F020018,0x7F020019,0x7F02001A,0x7F02001B,0x7F02001C,0x7F02001D,0x7F02001E,0x7F020021,0x7F020022,0x7F020023,0x7F020024,0x7F020025,0x7F02002B,0x7F020037,0x7F020038,0x7F020039,0x7F02003A,0x7F02003B,0x7F02003C,0x7F020040,0x7F020041,0x7F020044,0x7F020045,0x7F02004B,0x7F02004C,0x7F02004D,0x7F02004E,0x7F02004F,0x7F020050,0x7F020051,0x7F020052,0x7F020053,0x7F020054,0x7F02005D,0x7F020061,0x7F020062,0x7F020063,0x7F020066,0x7F020068,0x7F02006B,0x7F02006C,0x7F02006D,0x7F02006E,0x7F02006F,0x7F020082,0x7F020088,0x7F020097,0x7F020098,0x7F02009B,0x7F02009C,0x7F02009D,0x7F02009E,0x7F02009F,0x7F0200A0,0x7F0200A1,0x7F0200B0,0x7F0200B1,0x7F0200B2,0x7F0200B3,0x7F0200B5,0x7F0200BB,0x7F0200BC,0x7F0200BD,0x7F0200BE,0x7F0200C1,0x7F0200C2,0x7F0200C3,0x7F0200C4,0x7F0200CB,0x7F0200CC,0x7F0200DA,0x7F0200DD,0x7F0200DE,0x7F0200DF,0x7F0200E0,0x7F0200E1,0x7F0200E2,0x7F0200E3,0x7F0200E4,0x7F0200E5,0x7F0200E6,0x7F0200FB,0x7F0200FC,0x7F0200FD,0x7F0200FE,0x7F020104,0x7F020106,0x7F020107,0x7F020108,0x7F020109,0x7F02010A,0x7F02010B,0x7F02010C,0x7F02010D,0x7F02010E,0x7F02010F } + // aapt resource value: { 0x1010057,0x10100AE,0x7F020000,0x7F020001,0x7F020002,0x7F020003,0x7F020004,0x7F020005,0x7F020006,0x7F020007,0x7F020008,0x7F020009,0x7F02000A,0x7F02000B,0x7F02000C,0x7F02000E,0x7F02000F,0x7F020010,0x7F020011,0x7F020012,0x7F020013,0x7F020014,0x7F020015,0x7F020016,0x7F020017,0x7F020018,0x7F020019,0x7F02001A,0x7F02001B,0x7F02001C,0x7F02001D,0x7F02001E,0x7F020021,0x7F020041,0x7F020042,0x7F020043,0x7F020044,0x7F02004A,0x7F020056,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005F,0x7F020060,0x7F020063,0x7F020064,0x7F02006B,0x7F02006C,0x7F02006D,0x7F02006E,0x7F02006F,0x7F020070,0x7F020071,0x7F020072,0x7F020073,0x7F020074,0x7F02007D,0x7F020082,0x7F020083,0x7F020084,0x7F020087,0x7F020089,0x7F02008C,0x7F02008D,0x7F02008E,0x7F02008F,0x7F020090,0x7F0200A5,0x7F0200AC,0x7F0200BB,0x7F0200BC,0x7F0200BF,0x7F0200C0,0x7F0200C1,0x7F0200C2,0x7F0200C3,0x7F0200C4,0x7F0200C5,0x7F0200D4,0x7F0200D5,0x7F0200D6,0x7F0200D7,0x7F0200D9,0x7F0200DF,0x7F0200E0,0x7F0200E1,0x7F0200E2,0x7F0200E5,0x7F0200E6,0x7F0200E7,0x7F0200E8,0x7F0200EF,0x7F0200F0,0x7F0200FE,0x7F020101,0x7F020102,0x7F020103,0x7F020104,0x7F020105,0x7F020106,0x7F020107,0x7F020108,0x7F020109,0x7F02010A,0x7F02011F,0x7F020120,0x7F020121,0x7F020122,0x7F020128,0x7F02012A,0x7F02012B,0x7F02012C,0x7F02012D,0x7F02012E,0x7F02012F,0x7F020130,0x7F020131,0x7F020132,0x7F020133 } public static int[] AppCompatTheme = new int[] { 16842839, 16842926, @@ -4155,94 +5179,94 @@ namespace keepass2android 2130837533, 2130837534, 2130837537, - 2130837538, - 2130837539, - 2130837540, - 2130837541, - 2130837547, - 2130837559, - 2130837560, - 2130837561, - 2130837562, - 2130837563, - 2130837564, - 2130837568, 2130837569, + 2130837570, + 2130837571, 2130837572, - 2130837573, - 2130837579, - 2130837580, - 2130837581, - 2130837582, - 2130837583, - 2130837584, - 2130837585, - 2130837586, - 2130837587, - 2130837588, - 2130837597, - 2130837601, - 2130837602, + 2130837578, + 2130837590, + 2130837591, + 2130837592, + 2130837593, + 2130837594, + 2130837595, + 2130837599, + 2130837600, 2130837603, - 2130837606, - 2130837608, + 2130837604, 2130837611, 2130837612, 2130837613, 2130837614, 2130837615, + 2130837616, + 2130837617, + 2130837618, + 2130837619, + 2130837620, + 2130837629, 2130837634, - 2130837640, - 2130837655, - 2130837656, - 2130837659, - 2130837660, - 2130837661, - 2130837662, - 2130837663, - 2130837664, - 2130837665, - 2130837680, - 2130837681, - 2130837682, - 2130837683, - 2130837685, + 2130837635, + 2130837636, + 2130837639, + 2130837641, + 2130837644, + 2130837645, + 2130837646, + 2130837647, + 2130837648, + 2130837669, + 2130837676, 2130837691, 2130837692, - 2130837693, - 2130837694, + 2130837695, + 2130837696, 2130837697, 2130837698, 2130837699, 2130837700, - 2130837707, - 2130837708, - 2130837722, - 2130837725, - 2130837726, + 2130837701, + 2130837716, + 2130837717, + 2130837718, + 2130837719, + 2130837721, 2130837727, 2130837728, 2130837729, 2130837730, - 2130837731, - 2130837732, 2130837733, 2130837734, - 2130837755, - 2130837756, - 2130837757, + 2130837735, + 2130837736, + 2130837743, + 2130837744, 2130837758, + 2130837761, + 2130837762, + 2130837763, 2130837764, + 2130837765, 2130837766, 2130837767, 2130837768, 2130837769, 2130837770, - 2130837771, - 2130837772, - 2130837773, - 2130837774, - 2130837775}; + 2130837791, + 2130837792, + 2130837793, + 2130837794, + 2130837800, + 2130837802, + 2130837803, + 2130837804, + 2130837805, + 2130837806, + 2130837807, + 2130837808, + 2130837809, + 2130837810, + 2130837811}; // aapt resource value: 2 public static int AppCompatTheme_actionBarDivider = 2; @@ -4607,18 +5631,18 @@ namespace keepass2android // aapt resource value: 120 public static int AppCompatTheme_windowNoTitle = 120; - // aapt resource value: { 0x7F020026 } + // aapt resource value: { 0x7F020045 } public static int[] ButtonBarLayout = new int[] { - 2130837542}; + 2130837573}; // aapt resource value: 0 public static int ButtonBarLayout_allowStacking = 0; - // aapt resource value: { 0x10101A5,0x101031F,0x7F020027 } + // aapt resource value: { 0x10101A5,0x101031F,0x7F020046 } public static int[] ColorStateListItem = new int[] { 16843173, 16843551, - 2130837543}; + 2130837574}; // aapt resource value: 2 public static int ColorStateListItem_alpha = 2; @@ -4629,11 +5653,11 @@ namespace keepass2android // aapt resource value: 0 public static int ColorStateListItem_android_color = 0; - // aapt resource value: { 0x1010107,0x7F020042,0x7F020043 } + // aapt resource value: { 0x1010107,0x7F020061,0x7F020062 } public static int[] CompoundButton = new int[] { 16843015, - 2130837570, - 2130837571}; + 2130837601, + 2130837602}; // aapt resource value: 0 public static int CompoundButton_android_button = 0; @@ -4644,23 +5668,23 @@ namespace keepass2android // aapt resource value: 2 public static int CompoundButton_buttonTintMode = 2; - // aapt resource value: { 0x7F02008D,0x7F0200D0 } + // aapt resource value: { 0x7F0200B1,0x7F0200F4 } public static int[] CoordinatorLayout = new int[] { - 2130837645, - 2130837712}; + 2130837681, + 2130837748}; // aapt resource value: 0 public static int CoordinatorLayout_keylines = 0; - // aapt resource value: { 0x10100B3,0x7F020090,0x7F020091,0x7F020092,0x7F020093,0x7F020094,0x7F020095 } + // aapt resource value: { 0x10100B3,0x7F0200B4,0x7F0200B5,0x7F0200B6,0x7F0200B7,0x7F0200B8,0x7F0200B9 } public static int[] CoordinatorLayout_Layout = new int[] { 16842931, - 2130837648, - 2130837649, - 2130837650, - 2130837651, - 2130837652, - 2130837653}; + 2130837684, + 2130837685, + 2130837686, + 2130837687, + 2130837688, + 2130837689}; // aapt resource value: 0 public static int CoordinatorLayout_Layout_android_layout_gravity = 0; @@ -4686,16 +5710,16 @@ namespace keepass2android // aapt resource value: 1 public static int CoordinatorLayout_statusBarBackground = 1; - // aapt resource value: { 0x7F020029,0x7F02002A,0x7F020036,0x7F02004A,0x7F020069,0x7F02007E,0x7F0200CA,0x7F0200E8 } + // aapt resource value: { 0x7F020048,0x7F020049,0x7F020055,0x7F02006A,0x7F02008A,0x7F0200A0,0x7F0200EE,0x7F02010C } public static int[] DrawerArrowToggle = new int[] { - 2130837545, - 2130837546, - 2130837558, - 2130837578, - 2130837609, - 2130837630, - 2130837706, - 2130837736}; + 2130837576, + 2130837577, + 2130837589, + 2130837610, + 2130837642, + 2130837664, + 2130837742, + 2130837772}; // aapt resource value: 0 public static int DrawerArrowToggle_arrowHeadLength = 0; @@ -4721,27 +5745,27 @@ namespace keepass2android // aapt resource value: 7 public static int DrawerArrowToggle_thickness = 7; - // aapt resource value: { 0x7F020075,0x7F020076,0x7F020077,0x7F020078,0x7F020079,0x7F02007A } + // aapt resource value: { 0x7F020097,0x7F020098,0x7F020099,0x7F02009A,0x7F02009B,0x7F02009C } public static int[] FontFamily = new int[] { - 2130837621, - 2130837622, - 2130837623, - 2130837624, - 2130837625, - 2130837626}; + 2130837655, + 2130837656, + 2130837657, + 2130837658, + 2130837659, + 2130837660}; - // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F020073,0x7F02007B,0x7F02007C,0x7F02007D,0x7F020103 } + // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F020095,0x7F02009D,0x7F02009E,0x7F02009F,0x7F020127 } public static int[] FontFamilyFont = new int[] { 16844082, 16844083, 16844095, 16844143, 16844144, - 2130837619, - 2130837627, - 2130837628, - 2130837629, - 2130837763}; + 2130837653, + 2130837661, + 2130837662, + 2130837663, + 2130837799}; // aapt resource value: 0 public static int FontFamilyFont_android_font = 0; @@ -4853,17 +5877,17 @@ namespace keepass2android // aapt resource value: 2 public static int GradientColor_android_type = 2; - // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F020065,0x7F020067,0x7F0200A5,0x7F0200C6 } + // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F020086,0x7F020088,0x7F0200C9,0x7F0200EA } public static int[] LinearLayoutCompat = new int[] { 16842927, 16842948, 16843046, 16843047, 16843048, - 2130837605, - 2130837607, - 2130837669, - 2130837702}; + 2130837638, + 2130837640, + 2130837705, + 2130837738}; // aapt resource value: 2 public static int LinearLayoutCompat_android_baselineAligned = 2; @@ -4949,7 +5973,7 @@ namespace keepass2android // aapt resource value: 2 public static int MenuGroup_android_visible = 2; - // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F02000D,0x7F02001F,0x7F020020,0x7F020028,0x7F020056,0x7F020085,0x7F020086,0x7F0200AA,0x7F0200C5,0x7F0200FF } + // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F02000D,0x7F02001F,0x7F020020,0x7F020047,0x7F020076,0x7F0200A8,0x7F0200A9,0x7F0200CE,0x7F0200E9,0x7F020123 } public static int[] MenuItem = new int[] { 16842754, 16842766, @@ -4967,13 +5991,13 @@ namespace keepass2android 2130837517, 2130837535, 2130837536, - 2130837544, - 2130837590, - 2130837637, - 2130837638, - 2130837674, - 2130837701, - 2130837759}; + 2130837575, + 2130837622, + 2130837672, + 2130837673, + 2130837710, + 2130837737, + 2130837795}; // aapt resource value: 13 public static int MenuItem_actionLayout = 13; @@ -5044,7 +6068,7 @@ namespace keepass2android // aapt resource value: 22 public static int MenuItem_tooltipText = 22; - // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0200B6,0x7F0200D1 } + // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0200DA,0x7F0200F5 } public static int[] MenuView = new int[] { 16842926, 16843052, @@ -5053,8 +6077,8 @@ namespace keepass2android 16843055, 16843056, 16843057, - 2130837686, - 2130837713}; + 2130837722, + 2130837749}; // aapt resource value: 4 public static int MenuView_android_headerBackground = 4; @@ -5083,16 +6107,16 @@ namespace keepass2android // aapt resource value: 8 public static int MenuView_subMenuArrow = 8; - // aapt resource value: { 0x1010176,0x10102C9,0x7F0200AB } + // aapt resource value: { 0x1010176,0x10102C9,0x7F0200CF } public static int[] PopupWindow = new int[] { 16843126, 16843465, - 2130837675}; - - // aapt resource value: { 0x7F0200CF } - public static int[] PopupWindowBackgroundState = new int[] { 2130837711}; + // aapt resource value: { 0x7F0200F3 } + public static int[] PopupWindowBackgroundState = new int[] { + 2130837747}; + // aapt resource value: 0 public static int PopupWindowBackgroundState_state_above_anchor = 0; @@ -5105,10 +6129,10 @@ namespace keepass2android // aapt resource value: 2 public static int PopupWindow_overlapAnchor = 2; - // aapt resource value: { 0x7F0200AC,0x7F0200AF } + // aapt resource value: { 0x7F0200D0,0x7F0200D3 } public static int[] RecycleListView = new int[] { - 2130837676, - 2130837679}; + 2130837712, + 2130837715}; // aapt resource value: 0 public static int RecycleListView_paddingBottomNoButtons = 0; @@ -5116,25 +6140,25 @@ namespace keepass2android // aapt resource value: 1 public static int RecycleListView_paddingTopNoTitle = 1; - // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F020046,0x7F020055,0x7F020060,0x7F02007F,0x7F020087,0x7F02008F,0x7F0200B9,0x7F0200BA,0x7F0200BF,0x7F0200C0,0x7F0200D2,0x7F0200D7,0x7F020105 } + // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F020066,0x7F020075,0x7F020080,0x7F0200A1,0x7F0200AB,0x7F0200B3,0x7F0200DD,0x7F0200DE,0x7F0200E3,0x7F0200E4,0x7F0200F6,0x7F0200FB,0x7F020129 } public static int[] SearchView = new int[] { 16842970, 16843039, 16843296, 16843364, - 2130837574, - 2130837589, - 2130837600, - 2130837631, - 2130837639, - 2130837647, - 2130837689, - 2130837690, - 2130837695, - 2130837696, - 2130837714, - 2130837719, - 2130837765}; + 2130837606, + 2130837621, + 2130837632, + 2130837665, + 2130837675, + 2130837683, + 2130837725, + 2130837726, + 2130837731, + 2130837732, + 2130837750, + 2130837755, + 2130837801}; // aapt resource value: 0 public static int SearchView_android_focusable = 0; @@ -5187,13 +6211,13 @@ namespace keepass2android // aapt resource value: 16 public static int SearchView_voiceIcon = 16; - // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0200B4 } + // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0200D8 } public static int[] Spinner = new int[] { 16842930, 16843126, 16843131, 16843362, - 2130837684}; + 2130837720}; // aapt resource value: 3 public static int Spinner_android_dropDownWidth = 3; @@ -5244,22 +6268,22 @@ namespace keepass2android // aapt resource value: 1 public static int StateListDrawable_android_visible = 1; - // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0200C7,0x7F0200CD,0x7F0200D8,0x7F0200D9,0x7F0200DB,0x7F0200E9,0x7F0200EA,0x7F0200EB,0x7F020100,0x7F020101,0x7F020102 } + // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0200EB,0x7F0200F1,0x7F0200FC,0x7F0200FD,0x7F0200FF,0x7F02010D,0x7F02010E,0x7F02010F,0x7F020124,0x7F020125,0x7F020126 } public static int[] SwitchCompat = new int[] { 16843044, 16843045, 16843074, - 2130837703, - 2130837709, - 2130837720, - 2130837721, - 2130837723, - 2130837737, - 2130837738, 2130837739, - 2130837760, - 2130837761, - 2130837762}; + 2130837745, + 2130837756, + 2130837757, + 2130837759, + 2130837773, + 2130837774, + 2130837775, + 2130837796, + 2130837797, + 2130837798}; // aapt resource value: 1 public static int SwitchCompat_android_textOff = 1; @@ -5303,7 +6327,7 @@ namespace keepass2android // aapt resource value: 13 public static int SwitchCompat_trackTintMode = 13; - // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x7F020074,0x7F0200DC } + // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x7F020096,0x7F020100 } public static int[] TextAppearance = new int[] { 16842901, 16842902, @@ -5316,8 +6340,8 @@ namespace keepass2android 16843107, 16843108, 16843692, - 2130837620, - 2130837724}; + 2130837654, + 2130837760}; // aapt resource value: 10 public static int TextAppearance_android_fontFamily = 10; @@ -5358,37 +6382,37 @@ namespace keepass2android // aapt resource value: 12 public static int TextAppearance_textAllCaps = 12; - // aapt resource value: { 0x10100AF,0x1010140,0x7F02003D,0x7F020048,0x7F020049,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F0200A2,0x7F0200A3,0x7F0200A4,0x7F0200A7,0x7F0200A8,0x7F0200B4,0x7F0200D3,0x7F0200D4,0x7F0200D5,0x7F0200F1,0x7F0200F2,0x7F0200F3,0x7F0200F4,0x7F0200F5,0x7F0200F6,0x7F0200F7,0x7F0200F8,0x7F0200F9 } + // aapt resource value: { 0x10100AF,0x1010140,0x7F02005C,0x7F020068,0x7F020069,0x7F020077,0x7F020078,0x7F020079,0x7F02007A,0x7F02007B,0x7F02007C,0x7F0200C6,0x7F0200C7,0x7F0200C8,0x7F0200CB,0x7F0200CC,0x7F0200D8,0x7F0200F7,0x7F0200F8,0x7F0200F9,0x7F020115,0x7F020116,0x7F020117,0x7F020118,0x7F020119,0x7F02011A,0x7F02011B,0x7F02011C,0x7F02011D } public static int[] Toolbar = new int[] { 16842927, 16843072, - 2130837565, - 2130837576, - 2130837577, - 2130837591, - 2130837592, - 2130837593, - 2130837594, - 2130837595, 2130837596, - 2130837666, - 2130837667, - 2130837668, - 2130837671, - 2130837672, - 2130837684, - 2130837715, - 2130837716, - 2130837717, - 2130837745, - 2130837746, - 2130837747, - 2130837748, - 2130837749, - 2130837750, + 2130837608, + 2130837609, + 2130837623, + 2130837624, + 2130837625, + 2130837626, + 2130837627, + 2130837628, + 2130837702, + 2130837703, + 2130837704, + 2130837707, + 2130837708, + 2130837720, 2130837751, 2130837752, - 2130837753}; + 2130837753, + 2130837781, + 2130837782, + 2130837783, + 2130837784, + 2130837785, + 2130837786, + 2130837787, + 2130837788, + 2130837789}; // aapt resource value: 0 public static int Toolbar_android_gravity = 0; @@ -5477,19 +6501,19 @@ namespace keepass2android // aapt resource value: 28 public static int Toolbar_titleTextColor = 28; - // aapt resource value: { 0x1010000,0x10100DA,0x7F0200AD,0x7F0200AE,0x7F0200E7 } + // aapt resource value: { 0x1010000,0x10100DA,0x7F0200D1,0x7F0200D2,0x7F02010B } public static int[] View = new int[] { 16842752, 16842970, - 2130837677, - 2130837678, - 2130837735}; + 2130837713, + 2130837714, + 2130837771}; - // aapt resource value: { 0x10100D4,0x7F020034,0x7F020035 } + // aapt resource value: { 0x10100D4,0x7F020053,0x7F020054 } public static int[] ViewBackgroundHelper = new int[] { 16842964, - 2130837556, - 2130837557}; + 2130837587, + 2130837588}; // aapt resource value: 0 public static int ViewBackgroundHelper_android_background = 0; diff --git a/src/PluginSdkBinding/PluginSdkBinding.csproj b/src/PluginSdkBinding/PluginSdkBinding.csproj index a24de3d1..905c8688 100644 --- a/src/PluginSdkBinding/PluginSdkBinding.csproj +++ b/src/PluginSdkBinding/PluginSdkBinding.csproj @@ -54,7 +54,7 @@ - + Jars\Keepass2AndroidPluginSDK2-release.aar diff --git a/src/build-scripts/build-java.bat b/src/build-scripts/build-java.bat index e9f5da5e..4088a019 100644 --- a/src/build-scripts/build-java.bat +++ b/src/build-scripts/build-java.bat @@ -1,17 +1,17 @@ cd ..\java\JavaFileStorageTest-AS -call gradlew assemble +./gradlew assemble cd ..\KP2ASoftkeyboard_AS -call gradlew assemble +./gradlew assemble cd ..\Keepass2AndroidPluginSDK2 -call gradlew assemble +./gradlew assemble cd ..\KP2AKdbLibrary -call gradlew assemble +./gradlew assemble cd ..\PluginQR -call gradlew assemble +./gradlew assemble cd ..\..\build-scripts diff --git a/src/build-scripts/get-dependencies.bat b/src/build-scripts/get-dependencies.bat new file mode 100644 index 00000000..435ee9d6 --- /dev/null +++ b/src/build-scripts/get-dependencies.bat @@ -0,0 +1,17 @@ +cd ..\java\JavaFileStorageTest-AS +./gradlew -q :app:dependencies > ../../build-scripts/dependencies-JavaFileStorageTest-AS.txt + +cd ..\KP2ASoftkeyboard_AS +./gradlew -q :app:dependencies > ../../build-scripts/dependencies-KP2ASoftkeyboard_AS.txt + +cd ..\Keepass2AndroidPluginSDK2 +./gradlew -q :app:dependencies > ../../build-scripts/dependencies-Keepass2AndroidPluginSDK2.txt + + +cd ..\KP2AKdbLibrary +./gradlew -q :app:dependencies > ../../build-scripts/dependencies-KP2AKdbLibrary.txt + +cd ..\PluginQR +./gradlew -q :app:dependencies > ../../build-scripts/dependencies-PluginQR.txt + +cd ..\..\build-scripts diff --git a/src/java/JavaFileStorage/app/build.gradle b/src/java/JavaFileStorage/app/build.gradle index 0a00d418..5f30dd56 100644 --- a/src/java/JavaFileStorage/app/build.gradle +++ b/src/java/JavaFileStorage/app/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 26 + compileSdkVersion 28 buildToolsVersion '28.0.3' defaultConfig { minSdkVersion 15 - targetSdkVersion 23 + targetSdkVersion 28 } buildTypes { release { @@ -26,6 +26,7 @@ NOTE: If you change dependencies here, don't forget to update the jar files in J */ dependencies { + compile 'com.android.support:appcompat-v7:28.0.0' compile 'com.squareup.okhttp3:okhttp:4.2.2' compile 'com.burgstaller:okhttp-digest:2.0' compile 'com.google.android.gms:play-services:4.0.30' diff --git a/src/java/JavaFileStorage/app/src/main/java/com/jcraft/jsch/jgss/GSSContextKrb5.java b/src/java/JavaFileStorage/app/src/main/java/com/jcraft/jsch/jgss/GSSContextKrb5.java index cf3ca48f..c3b250d4 100644 --- a/src/java/JavaFileStorage/app/src/main/java/com/jcraft/jsch/jgss/GSSContextKrb5.java +++ b/src/java/JavaFileStorage/app/src/main/java/com/jcraft/jsch/jgss/GSSContextKrb5.java @@ -31,147 +31,7 @@ package com.jcraft.jsch.jgss; import com.jcraft.jsch.JSchException; -import java.net.InetAddress; -import java.net.UnknownHostException; -import org.ietf.jgss.GSSContext; -import org.ietf.jgss.GSSCredential; -import org.ietf.jgss.GSSException; -import org.ietf.jgss.GSSManager; -import org.ietf.jgss.GSSName; -import org.ietf.jgss.MessageProp; -import org.ietf.jgss.Oid; -public class GSSContextKrb5 implements com.jcraft.jsch.GSSContext{ +public class GSSContextKrb5 { - private static final String pUseSubjectCredsOnly = - "javax.security.auth.useSubjectCredsOnly"; - private static String useSubjectCredsOnly = - getSystemProperty(pUseSubjectCredsOnly); - - private GSSContext context=null; - public void create(String user, String host) throws JSchException{ - try{ - // RFC 1964 - Oid krb5=new Oid("1.2.840.113554.1.2.2"); - // Kerberos Principal Name Form - Oid principalName=new Oid("1.2.840.113554.1.2.2.1"); - - GSSManager mgr=GSSManager.getInstance(); - - GSSCredential crd=null; - /* - try{ - GSSName _user=mgr.createName(user, principalName); - crd=mgr.createCredential(_user, - GSSCredential.DEFAULT_LIFETIME, - krb5, - GSSCredential.INITIATE_ONLY); - } - catch(GSSException crdex){ - } - */ - - String cname=host; - try{ - cname=InetAddress.getByName(cname).getCanonicalHostName(); - } - catch(UnknownHostException e){ - } - GSSName _host=mgr.createName("host/"+cname, principalName); - - context=mgr.createContext(_host, - krb5, - crd, - GSSContext.DEFAULT_LIFETIME); - - // RFC4462 3.4. GSS-API Session - // - // When calling GSS_Init_sec_context(), the client MUST set - // integ_req_flag to "true" to request that per-message integrity - // protection be supported for this context. In addition, - // deleg_req_flag MAY be set to "true" to request access delegation, if - // requested by the user. - // - // Since the user authentication process by its nature authenticates - // only the client, the setting of mutual_req_flag is not needed for - // this process. This flag SHOULD be set to "false". - - // TODO: OpenSSH's sshd does accepts 'false' for mutual_req_flag - //context.requestMutualAuth(false); - context.requestMutualAuth(true); - context.requestConf(true); - context.requestInteg(true); // for MIC - context.requestCredDeleg(true); - context.requestAnonymity(false); - - return; - } - catch(GSSException ex){ - throw new JSchException(ex.toString()); - } - } - - public boolean isEstablished(){ - return context.isEstablished(); - } - - public byte[] init(byte[] token, int s, int l) throws JSchException { - try{ - // Without setting "javax.security.auth.useSubjectCredsOnly" to "false", - // Sun's JVM for Un*x will show messages to stderr in - // processing context.initSecContext(). - // This hack is not thread safe ;-<. - // If that property is explicitly given as "true" or "false", - // this hack must not be invoked. - if(useSubjectCredsOnly==null){ - setSystemProperty(pUseSubjectCredsOnly, "false"); - } - return context.initSecContext(token, 0, l); - } - catch(GSSException ex){ - throw new JSchException(ex.toString()); - } - catch(java.lang.SecurityException ex){ - throw new JSchException(ex.toString()); - } - finally{ - if(useSubjectCredsOnly==null){ - // By the default, it must be "true". - setSystemProperty(pUseSubjectCredsOnly, "true"); - } - } - } - - public byte[] getMIC(byte[] message, int s, int l){ - try{ - MessageProp prop = new MessageProp(0, true); - return context.getMIC(message, s, l, prop); - } - catch(GSSException ex){ - return null; - } - } - - public void dispose(){ - try{ - context.dispose(); - } - catch(GSSException ex){ - } - } - - private static String getSystemProperty(String key){ - try{ return System.getProperty(key); } - catch(Exception e){ - // We are not allowed to get the System properties. - return null; - } - } - - private static void setSystemProperty(String key, String value){ - try{ System.setProperty(key, value); } - catch(Exception e){ - // We are not allowed to set the System properties. - } - } } diff --git a/src/java/JavaFileStorage/build.gradle b/src/java/JavaFileStorage/build.gradle index 88d246d4..512a28ae 100644 --- a/src/java/JavaFileStorage/build.gradle +++ b/src/java/JavaFileStorage/build.gradle @@ -2,14 +2,19 @@ buildscript { repositories { jcenter() + maven { + url 'https://maven.google.com/' + name 'Google' + } } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' + classpath 'com.android.tools.build:gradle:3.3.2' } } allprojects { repositories { jcenter() + google() } } diff --git a/src/java/JavaFileStorage/gradle/wrapper/gradle-wrapper.properties b/src/java/JavaFileStorage/gradle/wrapper/gradle-wrapper.properties index 0c71e760..89f68a2e 100644 --- a/src/java/JavaFileStorage/gradle/wrapper/gradle-wrapper.properties +++ b/src/java/JavaFileStorage/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip diff --git a/src/java/JavaFileStorageTest-AS/app/build.gradle b/src/java/JavaFileStorageTest-AS/app/build.gradle index 86b4a12e..0e0f6ca6 100644 --- a/src/java/JavaFileStorageTest-AS/app/build.gradle +++ b/src/java/JavaFileStorageTest-AS/app/build.gradle @@ -1,13 +1,13 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 26 + compileSdkVersion 28 buildToolsVersion '28.0.3' defaultConfig { applicationId "com.crocoapps.javafilestoragetest" minSdkVersion 21 - targetSdkVersion 23 + targetSdkVersion 28 versionCode 1 versionName "1.0" multiDexEnabled true @@ -28,7 +28,7 @@ android { } } -apply plugin: 'com.getkeepsafe.dexcount' +//apply plugin: 'com.getkeepsafe.dexcount' dependencies { compile project(':android-filechooser') diff --git a/src/java/JavaFileStorageTest-AS/app/src/main/AndroidManifest.xml b/src/java/JavaFileStorageTest-AS/app/src/main/AndroidManifest.xml index cccbd169..3a68fce7 100644 --- a/src/java/JavaFileStorageTest-AS/app/src/main/AndroidManifest.xml +++ b/src/java/JavaFileStorageTest-AS/app/src/main/AndroidManifest.xml @@ -8,7 +8,6 @@ android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" - tools:replace="android:icon" android:theme="@style/AppTheme"> diff --git a/src/java/JavaFileStorageTest-AS/build.gradle b/src/java/JavaFileStorageTest-AS/build.gradle index 0451ca17..d80f8739 100644 --- a/src/java/JavaFileStorageTest-AS/build.gradle +++ b/src/java/JavaFileStorageTest-AS/build.gradle @@ -9,11 +9,11 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:3.0.1' + classpath 'com.android.tools.build:gradle:3.3.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files - classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.1' + //classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.1' } } diff --git a/src/java/JavaFileStorageTest-AS/gradle/wrapper/gradle-wrapper.properties b/src/java/JavaFileStorageTest-AS/gradle/wrapper/gradle-wrapper.properties index 10b45347..47e69a51 100644 --- a/src/java/JavaFileStorageTest-AS/gradle/wrapper/gradle-wrapper.properties +++ b/src/java/JavaFileStorageTest-AS/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip diff --git a/src/java/Keepass2AndroidPluginSDK2/build.gradle b/src/java/Keepass2AndroidPluginSDK2/build.gradle index 4f430187..9ec67506 100644 --- a/src/java/Keepass2AndroidPluginSDK2/build.gradle +++ b/src/java/Keepass2AndroidPluginSDK2/build.gradle @@ -1,15 +1,30 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. + buildscript { repositories { jcenter() + maven { + url 'https://maven.google.com/' + name 'Google' + } } dependencies { - classpath 'com.android.tools.build:gradle:2.2.1' + classpath 'com.android.tools.build:gradle:3.5.0' + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + //classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.1' } + } allprojects { repositories { jcenter() + google() } } + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/src/java/Keepass2AndroidPluginSDK2/gradle/wrapper/gradle-wrapper.properties b/src/java/Keepass2AndroidPluginSDK2/gradle/wrapper/gradle-wrapper.properties index 76a0a412..e4c40348 100644 --- a/src/java/Keepass2AndroidPluginSDK2/gradle/wrapper/gradle-wrapper.properties +++ b/src/java/Keepass2AndroidPluginSDK2/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip diff --git a/src/java/PluginQR/build.gradle b/src/java/PluginQR/build.gradle index ea1f3220..f86f2fb5 100644 --- a/src/java/PluginQR/build.gradle +++ b/src/java/PluginQR/build.gradle @@ -8,7 +8,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:3.0.1' + classpath 'com.android.tools.build:gradle:3.3.2' } } allprojects { diff --git a/src/java/PluginQR/gradle/wrapper/gradle-wrapper.properties b/src/java/PluginQR/gradle/wrapper/gradle-wrapper.properties index 10b45347..47e69a51 100644 --- a/src/java/PluginQR/gradle/wrapper/gradle-wrapper.properties +++ b/src/java/PluginQR/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip diff --git a/src/java/android-filechooser-AS/.idea/gradle.xml b/src/java/android-filechooser-AS/.idea/gradle.xml index 0f858804..0018fc4a 100644 --- a/src/java/android-filechooser-AS/.idea/gradle.xml +++ b/src/java/android-filechooser-AS/.idea/gradle.xml @@ -3,9 +3,14 @@ diff --git a/src/java/android-filechooser-AS/.idea/misc.xml b/src/java/android-filechooser-AS/.idea/misc.xml index d5124e1e..da485223 100644 --- a/src/java/android-filechooser-AS/.idea/misc.xml +++ b/src/java/android-filechooser-AS/.idea/misc.xml @@ -5,36 +5,41 @@ - - - - - - - - - - - + diff --git a/src/java/android-filechooser-AS/.idea/modules.xml b/src/java/android-filechooser-AS/.idea/modules.xml index f33e7d23..8528435a 100644 --- a/src/java/android-filechooser-AS/.idea/modules.xml +++ b/src/java/android-filechooser-AS/.idea/modules.xml @@ -3,6 +3,7 @@ + \ No newline at end of file diff --git a/src/java/android-filechooser-AS/.idea/workspace.xml b/src/java/android-filechooser-AS/.idea/workspace.xml index c38c70f2..a58a641c 100644 --- a/src/java/android-filechooser-AS/.idea/workspace.xml +++ b/src/java/android-filechooser-AS/.idea/workspace.xml @@ -1,23 +1,47 @@ - + + + + + + + + + + + + + + + + + + + + + + + + - - + + @@ -30,162 +54,137 @@ - + - + - - + - - - - - - - - - + + - + - - - + + - + + + + + + + + + + + - - - + + - + + + + + + + + + + - - - - - - + - + - - - - - - + - + - - - - - - + - - + + - + - - - - - - - - - - + - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + +