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 6457ad10..00000000
Binary files a/src/BiometricBinding/Jars/biometric-1.0.1.aar and /dev/null differ
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 @@
-
+
-
+
-
-
+
-
-
-
-
-
-
-
-
-
+
+
-
+
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
-
-
-
-
+
+
-
+
+
-
+
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -201,7 +200,7 @@
-
+
@@ -236,7 +235,7 @@
-
+
@@ -255,42 +254,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -312,61 +275,25 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
+
-
-
-
-
-
-
+
@@ -397,20 +324,38 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
@@ -419,41 +364,49 @@
1474396196987
+
1474396196987
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -464,201 +417,56 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/java/android-filechooser-AS/android-filechooser-AS.iml b/src/java/android-filechooser-AS/android-filechooser-AS.iml
index a41844bf..c55859d9 100644
--- a/src/java/android-filechooser-AS/android-filechooser-AS.iml
+++ b/src/java/android-filechooser-AS/android-filechooser-AS.iml
@@ -1,5 +1,5 @@
-
+
@@ -7,23 +7,13 @@
-
-
-
-
-
-
-
-
-
-
-
+
-
+
\ No newline at end of file
diff --git a/src/java/android-filechooser-AS/app/app.iml b/src/java/android-filechooser-AS/app/app.iml
index b6980838..40095245 100644
--- a/src/java/android-filechooser-AS/app/app.iml
+++ b/src/java/android-filechooser-AS/app/app.iml
@@ -1,92 +1,123 @@
-
+
+
+
-
-
-
-
-
+
+ generateDebugSources
+
-
+
+
-
+
-
-
-
+
+
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/java/android-filechooser-AS/app/build.gradle b/src/java/android-filechooser-AS/app/build.gradle
index 9c706a7a..6688dade 100644
--- a/src/java/android-filechooser-AS/app/build.gradle
+++ b/src/java/android-filechooser-AS/app/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'
android {
- compileSdkVersion 26
+ compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
- minSdkVersion 15
- targetSdkVersion 15
+ minSdkVersion 16
+ targetSdkVersion 28
}
buildTypes {
@@ -23,5 +23,5 @@ android {
}
dependencies {
- compile 'com.android.support:support-v4:26.1.0'
+ compile 'com.android.support:support-v4:28.0.0'
}
diff --git a/src/java/android-filechooser-AS/app/src/main/AndroidManifest.xml b/src/java/android-filechooser-AS/app/src/main/AndroidManifest.xml
index e4ee7192..b9739a84 100644
--- a/src/java/android-filechooser-AS/app/src/main/AndroidManifest.xml
+++ b/src/java/android-filechooser-AS/app/src/main/AndroidManifest.xml
@@ -9,8 +9,5 @@
-
\ No newline at end of file
diff --git a/src/java/android-filechooser-AS/build.gradle b/src/java/android-filechooser-AS/build.gradle
index 8b36472d..d80f8739 100644
--- a/src/java/android-filechooser-AS/build.gradle
+++ b/src/java/android-filechooser-AS/build.gradle
@@ -1,20 +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.1.3'
+ 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'
}
+
}
+
allprojects {
repositories {
jcenter()
+ google()
}
}
-dependencies {
+task clean(type: Delete) {
+ delete rootProject.buildDir
}
-android {
- buildToolsVersion '23.0.2'
-}
\ No newline at end of file
diff --git a/src/java/android-filechooser-AS/gradle/wrapper/gradle-wrapper.properties b/src/java/android-filechooser-AS/gradle/wrapper/gradle-wrapper.properties
index 1acea939..2343bebf 100644
--- a/src/java/android-filechooser-AS/gradle/wrapper/gradle-wrapper.properties
+++ b/src/java/android-filechooser-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-2.14.1-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
diff --git a/src/java/kp2akeytransform/bin/kp2akeytransform.jar b/src/java/kp2akeytransform/bin/kp2akeytransform.jar
deleted file mode 100644
index 3b4dfc37..00000000
Binary files a/src/java/kp2akeytransform/bin/kp2akeytransform.jar and /dev/null differ
diff --git a/src/keepass2android/BiometricModule.cs b/src/keepass2android/BiometricModule.cs
index f0862407..0cfd5369 100644
--- a/src/keepass2android/BiometricModule.cs
+++ b/src/keepass2android/BiometricModule.cs
@@ -10,7 +10,7 @@ using Android.Security.Keystore;
using Android.Preferences;
using Android.Util;
using Android.Widget;
-using Androidx.Biometric;
+using AndroidX.Biometric;
using AndroidX.Fragment.App;
using Java.IO;
using Java.Security.Cert;
@@ -282,7 +282,7 @@ namespace keepass2android
Kp2aLog.Log("Fingerprint: StartListening ");
var executor = Executors.NewSingleThreadExecutor();
- _biometricPrompt = new Androidx.Biometric.BiometricPrompt(_activity, executor, callback);
+ _biometricPrompt = new BiometricPrompt(_activity, executor, callback);
BiometricPrompt.PromptInfo promptInfo = new BiometricPrompt.PromptInfo.Builder()
.SetTitle(_activity.GetString(AppNames.AppNameResource))
diff --git a/src/keepass2android/FileSelectHelper.cs b/src/keepass2android/FileSelectHelper.cs
index 93ef968b..c8db0e89 100644
--- a/src/keepass2android/FileSelectHelper.cs
+++ b/src/keepass2android/FileSelectHelper.cs
@@ -16,7 +16,9 @@ using Android.Widget;
using Java.IO;
using keepass2android.Io;
+#if !EXCLUDE_JAVAFILESTORAGE
using Keepass2android.Javafilestorage;
+#endif
using KeePassLib.Serialization;
using KeePassLib.Utility;
@@ -457,7 +459,7 @@ namespace keepass2android
_activity.StartActivityForResult(i, _requestCode);
#else
- Toast.MakeText(this, "File chooser is excluded!", ToastLength.Long).Show();
+ Toast.MakeText(Application.Context, "File chooser is excluded!", ToastLength.Long).Show();
#endif
return true;
}
diff --git a/src/keepass2android/FingerprintSetupActivity.cs b/src/keepass2android/FingerprintSetupActivity.cs
index 00dec2ac..31196eb3 100644
--- a/src/keepass2android/FingerprintSetupActivity.cs
+++ b/src/keepass2android/FingerprintSetupActivity.cs
@@ -15,7 +15,6 @@ using Android.Widget;
using Java.Lang;
using KeePassLib.Keys;
using KeePassLib.Utility;
-using Kotlin.Text;
using Enum = System.Enum;
using Exception = System.Exception;
diff --git a/src/keepass2android/app/App.cs b/src/keepass2android/app/App.cs
index 954a2ae7..d5ae92c0 100644
--- a/src/keepass2android/app/App.cs
+++ b/src/keepass2android/app/App.cs
@@ -45,9 +45,12 @@ using keepass2android.database.edit;
using KeePassLib.Interfaces;
using KeePassLib.Utility;
#if !NoNet
+#if !EXCLUDE_JAVAFILESTORAGE
using Keepass2android.Javafilestorage;
using GoogleDriveFileStorage = keepass2android.Io.GoogleDriveFileStorage;
using PCloudFileStorage = keepass2android.Io.PCloudFileStorage;
+#endif
+
#endif
namespace keepass2android
{
@@ -97,10 +100,13 @@ namespace keepass2android
}
#endif
+
+
+
///
/// Main implementation of the IKp2aApp interface for usage in the real app.
///
- public class Kp2aApp: IKp2aApp, ICacheSupervisor
+ public class Kp2aApp: IKp2aApp, ICacheSupervisor
{
public void Lock(bool allowQuickUnlock = true)
{
@@ -791,12 +797,13 @@ namespace keepass2android
return prefs.GetBoolean(Application.Context.GetString(Resource.String.CheckForDuplicateUuids_key), true);
}
}
-#if !NoNet
- public ICertificateErrorHandler CertificateErrorHandler
+
+#if !NoNet && !EXCLUDE_JAVAFILESTORAGE
+
+ public ICertificateErrorHandler CertificateErrorHandler
{
get { return new CertificateErrorHandlerImpl(this); }
}
-
public class CertificateErrorHandlerImpl : Java.Lang.Object, Keepass2android.Javafilestorage.ICertificateErrorHandler
diff --git a/src/keepass2android/keepass2android.csproj b/src/keepass2android/keepass2android.csproj
index b92e7e54..bde447e8 100644
--- a/src/keepass2android/keepass2android.csproj
+++ b/src/keepass2android/keepass2android.csproj
@@ -117,9 +117,6 @@
-
- ..\packages\Xamarin.Jetbrains.Annotations.13.0.0.1\lib\monoandroid90\Xamarin.Jetbrains.Annotations.dll
-
..\packages\Xamarin.Kotlin.StdLib.1.3.50.1\lib\monoandroid90\Xamarin.Kotlin.StdLib.dll
@@ -809,10 +806,6 @@
-
- {2b1de455-bf8e-4f8a-87be-ae7ea354f3e4}
- BiometricBinding
-
{48574278-4779-4B3A-A9E4-9CF1BC285D0B}
JavaFileStorageBindings
@@ -1895,151 +1888,169 @@
- 27.1.3
+ 31.3.1
1.1.10
- 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
- 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
+
+
+ 1.1.0
+
+
+ 1.0.0
- 1.0.0-preview02
+ 1.0.0
- 1.0.0-preview02
+ 1.0.0
+
+
+ 2.1.0
- 1.0.0-preview05
+ 1.0.0
- 0.4.2
+ 0.8.0
- 1.0.0-preview02
+ 1.0.0
- 27.0.0
+ 71.1600.0
+
+
+ 13.0.0.1
+
+
+ 1.3.50.1
+
+
+ 1.3.50.1
@@ -2047,11 +2058,5 @@
Dieses Projekt verweist auf mindestens ein NuGet-Paket, das auf diesem Computer fehlt. Verwenden Sie die Wiederherstellung von NuGet-Paketen, um die fehlenden Dateien herunterzuladen. Weitere Informationen finden Sie unter "http://go.microsoft.com/fwlink/?LinkID=322105". Die fehlende Datei ist "{0}".
-
-
-
-
-
-
\ No newline at end of file