diff --git a/.idea/caches/build_file_checksums.ser b/.idea/caches/build_file_checksums.ser
new file mode 100644
index 0000000..86e9cf1
Binary files /dev/null and b/.idea/caches/build_file_checksums.ser differ
diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
new file mode 100644
index 0000000..681f41a
--- /dev/null
+++ b/.idea/codeStyles/Project.xml
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ xmlns:android
+
+ ^$
+
+
+
+
+
+
+
+
+ xmlns:.*
+
+ ^$
+
+
+ BY_NAME
+
+
+
+
+
+
+ .*:id
+
+ http://schemas.android.com/apk/res/android
+
+
+
+
+
+
+
+
+ .*:name
+
+ http://schemas.android.com/apk/res/android
+
+
+
+
+
+
+
+
+ name
+
+ ^$
+
+
+
+
+
+
+
+
+ style
+
+ ^$
+
+
+
+
+
+
+
+
+ .*
+
+ ^$
+
+
+ BY_NAME
+
+
+
+
+
+
+ .*
+
+ http://schemas.android.com/apk/res/android
+
+
+ ANDROID_ATTRIBUTE_ORDER
+
+
+
+
+
+
+ .*
+
+ .*
+
+
+ BY_NAME
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index 3e1b261..1a6b98a 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -1,19 +1,18 @@
+
\ No newline at end of file
diff --git a/CaptivaMobileSdk/CaptivaMobileSdk.iml b/CaptivaMobileSdk/CoreCaptureMobile-captivamobilesdk.iml
similarity index 91%
rename from CaptivaMobileSdk/CaptivaMobileSdk.iml
rename to CaptivaMobileSdk/CoreCaptureMobile-captivamobilesdk.iml
index ff89d75..99746f9 100644
--- a/CaptivaMobileSdk/CaptivaMobileSdk.iml
+++ b/CaptivaMobileSdk/CoreCaptureMobile-captivamobilesdk.iml
@@ -4,6 +4,8 @@
+
+
diff --git a/CaptivaMobileSdk/captivamobilesdk.aar b/CaptivaMobileSdk/captivamobilesdk.aar
new file mode 100644
index 0000000..a588649
Binary files /dev/null and b/CaptivaMobileSdk/captivamobilesdk.aar differ
diff --git a/SnapMobileWIP.iml b/CoreCaptureMobile.iml
similarity index 76%
rename from SnapMobileWIP.iml
rename to CoreCaptureMobile.iml
index c18fe57..d0842e8 100644
--- a/SnapMobileWIP.iml
+++ b/CoreCaptureMobile.iml
@@ -1,5 +1,5 @@
-
+
diff --git a/app/app.iml b/app/app.iml
index 4e2cdfc..45ad5e0 100644
--- a/app/app.iml
+++ b/app/app.iml
@@ -4,6 +4,8 @@
+
+
@@ -17,30 +19,28 @@
-
+
-
-
+
+
-
-
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
@@ -69,13 +69,6 @@
-
-
-
-
-
-
-
@@ -83,71 +76,55 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
index b37b0e5..82c593f 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -2,16 +2,15 @@ apply plugin: 'com.android.application'
dependencies {
- // This is the dependency that utilizes the Captiva Mobile SDK.
implementation files('libs/gson-2.6.2.jar')
implementation files('libs/volley.jar')
//compile files('libs/android-support-v7-appcompat.jar')
- implementation project(':captivamobilesdk')
- implementation 'com.android.support:appcompat-v7:25.1.0'
- implementation 'com.android.support:support-v4:24.2.1'
- implementation 'com.android.support:recyclerview-v7:25.1.0'
- implementation 'com.android.support:appcompat-v7:25.1.0'
- implementation 'com.android.support:design:27.1.1'
+ implementation 'com.android.support:appcompat-v7:28.0.0'
+ implementation 'com.android.support:support-v4:28.0.0'
+ implementation 'com.android.support:recyclerview-v7:28.0.0'
+ implementation 'com.android.support:appcompat-v7:28.0.0'
+ implementation 'com.android.support:design:28.0.0'
+ implementation project(path: ':captivamobilesdk')
}
// This is required to compile AAR files from the libs folder.
@@ -26,16 +25,16 @@ android {
// low as the API requirement of the highest feature in the code. It does affect the Java
// language version though... so if a later/current Java language version is required, use a
// more current SDK version.
- compileSdkVersion 26
+ compileSdkVersion 28
// Note that the build tools version supports a lesser compiler version.
defaultConfig {
- applicationId 'snap.mobile'
+ applicationId 'core.capture.mobile'
// Bumped the minimum to API 16 (Jelly Bean). API 16 captures 88% of Android users as of July 2015.
minSdkVersion 25
// This is the highest version that the code has been tested to run on. The code will run
// on higher versions, but this is the version that has been tested/certified as the target.
- targetSdkVersion 25
+ targetSdkVersion 28
versionCode 1
versionName "1.0"
}
@@ -69,4 +68,5 @@ android {
}
dexOptions {
}
+ buildToolsVersion = '28.0.3'
}
diff --git a/app/build.gradle-production b/app/build.gradle-production
index 79c8a16..91ebbbe 100644
--- a/app/build.gradle-production
+++ b/app/build.gradle-production
@@ -1,10 +1,7 @@
apply plugin: 'com.android.application'
-dependencies {
- // This is the dependency that utilizes the Captiva Mobile SDK.
- compile(name: 'captivamobilesdk', ext: 'aar')
-}
+
// This is required to compile AAR files from the libs folder.
repositories {
diff --git a/app/build/generated/source/buildConfig/debug/otmobile/BuildConfig.java b/app/build/generated/source/buildConfig/debug/otmobile/BuildConfig.java
new file mode 100644
index 0000000..242e302
--- /dev/null
+++ b/app/build/generated/source/buildConfig/debug/otmobile/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package otmobile;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "core.capture.mobile";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 1;
+ public static final String VERSION_NAME = "1.0";
+}
diff --git a/app/build/intermediates/incremental/mergeDebugResources/merger.xml b/app/build/intermediates/incremental/mergeDebugResources/merger.xml
index 97a7e53..12baf31 100644
--- a/app/build/intermediates/incremental/mergeDebugResources/merger.xml
+++ b/app/build/intermediates/incremental/mergeDebugResources/merger.xml
@@ -1,28 +1,156 @@
-#14000000@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232
-
-
+
+
+
+
+
-
-
+
+
+
+
-
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4dp168dp14sp8dp56dp96dp56dp8dp1dp12sp16dp64dp0.5dp6dp24dp40dp56dp6dp16dp32dp24dp280dp8dp8dp128dp0dp6dp0dp-1px-1px12dp14dp24dp14sp264dp72dp14sp12sp 1501502320200android.support.design.widget.AppBarLayout$ScrollingViewBehaviorandroid.support.design.widget.BottomSheetBehavior%1$d / %2$dToggle password visibilityM12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM3.27,4.27 L19.74,20.74320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical160dp1 BackCropImage
- - Custom
- - Captiva Server
-
- - Custom
- - IAServer
-
- - Development
- - Test
- - Production
-
- - US
- - EU
-
- - D
- - T
- - P
-
-
-
- #6600000016dp16dp16dp#FFFFFFSnap Data CentreSnap EnvironmentEnter Your Snap EnvironmentSnap Export TypeEnter Your Snap Export TypeSnap Export Profile NameEnter Your Snap Export Profile NameCaptiva ServerEnter Your Captiva Server Connection NameCaptiva CaptureFlowEnter Your Captiva CaptureFlow NameSnap ProfilesCapture ProfileSnap Capture Profile NameEnter your Snap Capture Profile NameRecognition ProjectSnap Recognition Project NameEnter your Snap Recognition Project NameLICE036-S0PN-5110APP9733-S507-6772Snap UserYour Snap UsernameEnter your Snap UsernameSnap PasswordYour Snap PasswordEnter your Snap PasswordSnap URLYour Snap URLEnter Your Snap URLSnap ConnectionSnap SubscriptionYour Snap SubscriptionEnter Your Snap Subscription NameSnap ClientYour Snap Client IDEnter Your Snap Client IDSnap SecretYour Snap SecretEnter Your Snap SecretCore Capture MobileCopyright 2013–2016 by EMC CorporationEMC World MobileTake PictureTake Continuous PicturesEnhance ImageSettingsEnhance ImageCrop ImageQuad Crop ImageInformationDevice ID: Image Width: Image Height: Image Channels: Image Bits Per Pixel: Version: Glare: Quadrilateral: Perspective: Total Quality: Last Error: Menu< PrevNext >ImageDoneUpdateUndo AllUndo LastNothing left to undo.Undo disabled.Undo failed.Submit CropImage LabelBlack-WhiteGrayDeskewRotate LeftRotate RightCropQuadrilateral CropAuto CropDeleteGet InformationLighterDarkerIncrease ContrastDecrease ContrastRemove NoiseResizeRotate 180Detect BarcodesNo barcodes foundBarcodesGPREF_CAPTURE_GROUPCapture SettingsGPREF_EDGELABELEdge LabelDisplay text on the edge of the camera window.GPREF_CENTERLABELCenter LabelDisplay text in the center of the camera window.GPREF_CAPTURINGLABELCapturing LabelThe text to display during the capturing phase.GPREF_SENSOR_LIGHTUse Light SensorThis will display the light sensor on the capture window (Default is true).GPREF_SENSOR_LIGHT_VALUELight SensitivityThe is the amount of light needed to satisfy the light sensor. Acceptable integer values are 0 (no light) to 5000 (very bright light). The default is 10.GPREF_SENSOR_MOTIONUse Motion SensorThis will display the motion sensor (shared with focus) on the capture window (Default is true).GPREF_SENSOR_MOTION_VALUEMotion SensitivityThis is the amount of motion needed to satisfy the motion sensor. Acceptable float values are 0.0 (absolutely no motion) to 10.0 (large motion allowed). The default is 0.30.GPREF_SENSOR_FOCUSUse Focus SensorThis will display the focus sensor (shared with motion) on the capture window (Default is true).GPREF_SENSOR_QUALITYUse Quality SensorThis will display the quality sensor on the capture window (Default is false). This setting should be enabled to use the quadrilateral overlay view during capture.GPREF_GUIDELINESDisplay GuidelinesThis will display the guidelines on the capture window.GPREF_PICTURE_CROPDisplay Picture Crop GuidelinesThis will display the picture crop guidelines on the capture window.GPREF_PICTURE_CROP_COLORPicture Crop Guidelines ColorThe color of the picture crop guidelines.GPREF_PICTURE_CROP_WARNING_COLORPicture Crop Guidelines Warning ColorThe warning color of the picture crop guidelines.GPREF_PICTURE_CROP_ASPECT_WIDTHPicture Crop Guidelines Aspect WidthThe width value for the picture crop guidelines aspect ratio.GPREF_PICTURE_CROP_ASPECT_HEIGHTPicture Crop Guidelines Aspect HeightThe height value for the picture crop guidelines aspect ratio.GPREF_SENSOR_QUALITY_GLARE_VALUEGlare SensitivityThe amount of glare that is allowed in the image. Values can be in the range 0 (all glare is allowed)–100 (no glare is allowed).GPREF_SENSOR_QUALITY_PERSPECTIVE_VALUEPerspective SensitivityThe minimum required squareness for the corners of the detected quadrilateral in the image. Values can be in the range 0 (no quadrilateral required)–100 (the corners must be perfectly square).GPREF_SENSOR_QUALITY_QUADRILATERAL_VALUEQuadrilateral SensitivityThe minimum required size for the quadrilateral that must be detected in the image. Values can be in the range 0 (no quadrilateral required)–100 (the entire frame must be filled with a quadrilateral).GPREF_CANCELDisplay Cancel ButtonThis will display a cancel/back button on the capture window.GPREF_TORCH_BUTTONDisplay Torch ButtonThis will display a torch button on the capture window.GPREF_TORCHInitial TorchThis will turn on the torch for the capture window.GPREF_CAPTUREDELAYCapture DelayA positive integer representing the time (ms) to wait after the user selects the capture button. The default value is 500.GPREF_CONTINUOUSCAPTUREFRAMEDELAYContinuous Capture Frame DelayA positive integer representing the time (ms) to wait before processing the next frame after a frame has been captured in continuous capture mode. The default value is 500.GPREF_CAPTURETIMEOUTCapture TimeoutA positive integer representing the maximum time (ms) to wait for optimal conditions before taking the picture. A value of 0 indicates no wait. The default value is 2500.GPREF_CAPTURESIMILARITYCapture SimilarityA float value between 0 (no similarity) and 100 (identical) to use as a threshold for detecting a new image in continuous capture mode.GPREF_CAPTURECOUNTCapture CountA positive integer representing the number of images to capture in a continuous capture session.GPREF_OPTIMALCONDREQOptimal Conditions RequiredThis will require any sensors enabled to achieve optimal conditions before capturing can take place.GPREF_AUTOCAPTURECapture ImmediatelyThis will put the camera immediately into capture mode, instead of requiring a press of the camera button.GPREF_IMAGEFORMATImage Format for SavingEnter the image format you want to use when saving the picture (JPG, PNG, TIFF). Default is JPG.GPREF_JPGQUALITYJPG QualityThe compression quality to use when saving JPG or TIFF images. Acceptable values are 0 (poor-max compression) to 100 (Best-no compression). 95 is default.GPREF_DPIXFixed DPI XIf you would like to fix a horizontal DPI resolution when saving an image enter it here. If set to 0, then the default behavior will be used.GPREF_DPIYFixed DPI YIf you would like to fix a vertical DPI resolution when saving an image enter it here. If set to 0, then the default behavior will be used.GPREF_FILTER_SETTINGSImage Filter SettingsGPREF_FILTER_ADAPTIVE_BINARY_FORCEBlack-White Force BlackForce darker portions of the image to black for the Black-White filter when they would normally be white.GPREF_FILTER_ADAPTIVE_BINARY_BLACKNESSBlack-White BlacknessControl the aggressiveness of light-on-dark handling. Valid values are 1-20 where lower values are more conservative about white text on lighter backgrounds; the recommended value is the default of 6. To retain the behavior from earlier releases, set this value to 2.GPREF_FILTER_CROP_PADDINGAutocrop PaddingExtra padding applied to the image by the autocrop filter. A value of 0.05 represents 5% padding. 0 is the default.GPREF_FILTER_REMOVE_NOISERemove NoiseThe size of the noise to remove. A value of greater than 0.GPREF_FILTER_ENABLE_UNDOEnable UndoEnables one level undo of enhance image filters.GPREF_QUAD_CROP_COLORQuadrilateral Crop ColorThe color of the quadrilateral crop lines and circles.GPREF_QUAD_CROP_LINE_WIDTHQuadrilateral Crop Line WidthThe width (in pixels) of the quadrilateral crop lines.GPREF_QUAD_CROP_CIRCLE_RADIUSQuadrilateral Crop Circle RadiusThe radius (in pixels) of the quadrilateral crop circles.GPREF_QUAD_CROP_SHADE_BACKGROUNDQuadrilateral Crop Shade BackgroundWhen true, the region being excluded by the crop will be shaded.GPREF_APPLICATION_SETTINGSApplication SettingsGPREF_APPLICATIONIDApplication IdentifierApplication identifier used for licensing.GPREF_LICENSEApplication LicenseApplication license code tied to the application identifier to be added.GPREF_CUSTOM_GROUPCustom Overlay SettingsGPREF_CUSTOM_OPTIONSOverlay OptionsNoneExtendReplace
- - @string/GPREF_CAPTURE_CUSTOM_OPTIONS_NONE
- - @string/GPREF_CAPTURE_CUSTOM_OPTIONS_EXTEND
- - @string/GPREF_CAPTURE_CUSTOM_OPTIONS_REPLACE
- Barcode ConfigurationGPREF_BARCODE_COUNTBarcode CountMaximum number of barcodes to detect.5GPREF_BARCODE_TYPEBarcode TypesConfigure types of barcodes to detect.First Screensnap_results
- "Material is the metaphor.\n\n"
+
+
- "A material metaphor is the unifying theory of a rationalized space and a system of motion."
- "The material is grounded in tactile reality, inspired by the study of paper and ink, yet "
- "technologically advanced and open to imagination and magic.\n"
- "Surfaces and edges of the material provide visual cues that are grounded in reality. The "
- "use of familiar tactile attributes helps users quickly understand affordances. Yet the "
- "flexibility of the material creates new affordances that supercede those in the physical "
- "world, without breaking the rules of physics.\n"
- "The fundamentals of light, surface, and movement are key to conveying how objects move, "
- "interact, and exist in space and in relation to each other. Realistic lighting shows "
- "seams, divides space, and indicates moving parts.\n\n"
+
+
- "Bold, graphic, intentional.\n\n"
+
+
- "The foundational elements of print based design typography, grids, space, scale, color, "
- "and use of imagery guide visual treatments. These elements do far more than please the "
- "eye. They create hierarchy, meaning, and focus. Deliberate color choices, edge to edge "
- "imagery, large scale typography, and intentional white space create a bold and graphic "
- "interface that immerse the user in the experience.\n"
- "An emphasis on user actions makes core functionality immediately apparent and provides "
- "waypoints for the user.\n\n"
+
+
- "Motion provides meaning.\n\n"
+
+
- "Motion respects and reinforces the user as the prime mover. Primary user actions are "
- "inflection points that initiate motion, transforming the whole design.\n"
- "All action takes place in a single environment. Objects are presented to the user without "
- "breaking the continuity of experience even as they transform and reorganize.\n"
- "Motion is meaningful and appropriate, serving to focus attention and maintain continuity. "
- "Feedback is subtle yet clear. Transitions are efficient yet coherent.\n\n"
+
+
- "3D world.\n\n"
+
+
- "The material environment is a 3D space, which means all objects have x, y, and z "
- "dimensions. The z-axis is perpendicularly aligned to the plane of the display, with the "
- "positive z-axis extending towards the viewer. Every sheet of material occupies a single "
- "position along the z-axis and has a standard 1dp thickness.\n"
- "On the web, the z-axis is used for layering and not for perspective. The 3D world is "
- "emulated by manipulating the y-axis.\n\n"
+
+
- "Light and shadow.\n\n"
+
+
- "Within the material environment, virtual lights illuminate the scene. Key lights create "
- "directional shadows, while ambient light creates soft shadows from all angles.\n"
- "Shadows in the material environment are cast by these two light sources. In Android "
- "development, shadows occur when light sources are blocked by sheets of material at "
- "various positions along the z-axis. On the web, shadows are depicted by manipulating the "
- "y-axis only. The following example shows the card with a height of 6dp.\n\n"
+
+
- "Resting elevation.\n\n"
+
+
+
+
+
+
+
+
+
- "All material objects, regardless of size, have a resting elevation, or default elevation "
- "that does not change. If an object changes elevation, it should return to its resting "
- "elevation as soon as possible.\n\n"
+
+
- "Component elevations.\n\n"
+
+
- "The resting elevation for a component type is consistent across apps (e.g., FAB elevation "
- "does not vary from 6dp in one app to 16dp in another app).\n"
- "Components may have different resting elevations across platforms, depending on the depth "
- "of the environment (e.g., TV has a greater depth than mobile or desktop).\n\n"
+
+
- "Responsive elevation and dynamic elevation offsets.\n\n"
+
+
- "Some component types have responsive elevation, meaning they change elevation in response "
- "to user input (e.g., normal, focused, and pressed) or system events. These elevation "
- "changes are consistently implemented using dynamic elevation offsets.\n"
- "Dynamic elevation offsets are the goal elevation that a component moves towards, relative "
- "to the component’s resting state. They ensure that elevation changes are consistent "
- "across actions and component types. For example, all components that lift on press have "
- "the same elevation change relative to their resting elevation.\n"
- "Once the input event is completed or cancelled, the component will return to its resting "
- "elevation.\n\n"
+
+
+
+
- "Avoiding elevation interference.\n\n"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- "Components with responsive elevations may encounter other components as they move between "
- "their resting elevations and dynamic elevation offsets. Because material cannot pass "
- "through other material, components avoid interfering with one another any number of ways, "
- "whether on a per component basis or using the entire app layout.\n"
- "On a component level, components can move or be removed before they cause interference. "
- "For example, a floating action button (FAB) can disappear or move off screen before a "
- "user picks up a card, or it can move if a snackbar appears.\n"
- "On the layout level, design your app layout to minimize opportunities for interference. "
- "For example, position the FAB to one side of stream of a cards so the FAB won’t interfere "
- "when a user tries to pick up one of cards.\n\n"
- FullscreenActivityDummy ButtonDUMMY\nCONTENT128dp#66000000#ffffff#2c95dd#51E075#C3C3C364dp
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
@@ -2097,17 +4273,185 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2120,14 +4464,24 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2140,7 +4494,30 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2153,7 +4530,13 @@
-
+
+
+
+
+
+
+
@@ -2166,57 +4549,289 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2227,7 +4842,28 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2240,15 +4876,143 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2261,4 +5025,13 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/build/intermediates/symbols/debug/R.txt b/app/build/intermediates/symbols/debug/R.txt
deleted file mode 100644
index 4ee9e2d..0000000
--- a/app/build/intermediates/symbols/debug/R.txt
+++ /dev/null
@@ -1,2301 +0,0 @@
-int anim abc_fade_in 0x7f010000
-int anim abc_fade_out 0x7f010001
-int anim abc_grow_fade_in_from_bottom 0x7f010002
-int anim abc_popup_enter 0x7f010003
-int anim abc_popup_exit 0x7f010004
-int anim abc_shrink_fade_out_from_bottom 0x7f010005
-int anim abc_slide_in_bottom 0x7f010006
-int anim abc_slide_in_top 0x7f010007
-int anim abc_slide_out_bottom 0x7f010008
-int anim abc_slide_out_top 0x7f010009
-int anim abc_tooltip_enter 0x7f01000a
-int anim abc_tooltip_exit 0x7f01000b
-int anim design_bottom_sheet_slide_in 0x7f01000c
-int anim design_bottom_sheet_slide_out 0x7f01000d
-int anim design_snackbar_in 0x7f01000e
-int anim design_snackbar_out 0x7f01000f
-int animator design_appbar_state_list_animator 0x7f020000
-int array GPREF_CAPTURE_CUSTOM_OPTIONS_VALUES 0x7f030000
-int array listDCArray 0x7f030001
-int array listEnvArray 0x7f030002
-int array listEnvValues 0x7f030003
-int array listExpTypesArray 0x7f030004
-int array listExpTypesValues 0x7f030005
-int attr actionBarDivider 0x7f040000
-int attr actionBarItemBackground 0x7f040001
-int attr actionBarPopupTheme 0x7f040002
-int attr actionBarSize 0x7f040003
-int attr actionBarSplitStyle 0x7f040004
-int attr actionBarStyle 0x7f040005
-int attr actionBarTabBarStyle 0x7f040006
-int attr actionBarTabStyle 0x7f040007
-int attr actionBarTabTextStyle 0x7f040008
-int attr actionBarTheme 0x7f040009
-int attr actionBarWidgetTheme 0x7f04000a
-int attr actionButtonStyle 0x7f04000b
-int attr actionDropDownStyle 0x7f04000c
-int attr actionLayout 0x7f04000d
-int attr actionMenuTextAppearance 0x7f04000e
-int attr actionMenuTextColor 0x7f04000f
-int attr actionModeBackground 0x7f040010
-int attr actionModeCloseButtonStyle 0x7f040011
-int attr actionModeCloseDrawable 0x7f040012
-int attr actionModeCopyDrawable 0x7f040013
-int attr actionModeCutDrawable 0x7f040014
-int attr actionModeFindDrawable 0x7f040015
-int attr actionModePasteDrawable 0x7f040016
-int attr actionModePopupWindowStyle 0x7f040017
-int attr actionModeSelectAllDrawable 0x7f040018
-int attr actionModeShareDrawable 0x7f040019
-int attr actionModeSplitBackground 0x7f04001a
-int attr actionModeStyle 0x7f04001b
-int attr actionModeWebSearchDrawable 0x7f04001c
-int attr actionOverflowButtonStyle 0x7f04001d
-int attr actionOverflowMenuStyle 0x7f04001e
-int attr actionProviderClass 0x7f04001f
-int attr actionViewClass 0x7f040020
-int attr activityChooserViewStyle 0x7f040021
-int attr alertDialogButtonGroupStyle 0x7f040022
-int attr alertDialogCenterButtons 0x7f040023
-int attr alertDialogStyle 0x7f040024
-int attr alertDialogTheme 0x7f040025
-int attr allowStacking 0x7f040026
-int attr alpha 0x7f040027
-int attr alphabeticModifiers 0x7f040028
-int attr arrowHeadLength 0x7f040029
-int attr arrowShaftLength 0x7f04002a
-int attr autoCompleteTextViewStyle 0x7f04002b
-int attr autoSizeMaxTextSize 0x7f04002c
-int attr autoSizeMinTextSize 0x7f04002d
-int attr autoSizePresetSizes 0x7f04002e
-int attr autoSizeStepGranularity 0x7f04002f
-int attr autoSizeTextType 0x7f040030
-int attr background 0x7f040031
-int attr backgroundSplit 0x7f040032
-int attr backgroundStacked 0x7f040033
-int attr backgroundTint 0x7f040034
-int attr backgroundTintMode 0x7f040035
-int attr barLength 0x7f040036
-int attr behavior_autoHide 0x7f040037
-int attr behavior_hideable 0x7f040038
-int attr behavior_overlapTop 0x7f040039
-int attr behavior_peekHeight 0x7f04003a
-int attr behavior_skipCollapsed 0x7f04003b
-int attr borderWidth 0x7f04003c
-int attr borderlessButtonStyle 0x7f04003d
-int attr bottomSheetDialogTheme 0x7f04003e
-int attr bottomSheetStyle 0x7f04003f
-int attr buttonBarButtonStyle 0x7f040040
-int attr buttonBarNegativeButtonStyle 0x7f040041
-int attr buttonBarNeutralButtonStyle 0x7f040042
-int attr buttonBarPositiveButtonStyle 0x7f040043
-int attr buttonBarStyle 0x7f040044
-int attr buttonGravity 0x7f040045
-int attr buttonIconDimen 0x7f040046
-int attr buttonPanelSideLayout 0x7f040047
-int attr buttonStyle 0x7f040048
-int attr buttonStyleSmall 0x7f040049
-int attr buttonTint 0x7f04004a
-int attr buttonTintMode 0x7f04004b
-int attr checkboxStyle 0x7f04004c
-int attr checkedTextViewStyle 0x7f04004d
-int attr closeIcon 0x7f04004e
-int attr closeItemLayout 0x7f04004f
-int attr collapseContentDescription 0x7f040050
-int attr collapseIcon 0x7f040051
-int attr collapsedTitleGravity 0x7f040052
-int attr collapsedTitleTextAppearance 0x7f040053
-int attr color 0x7f040054
-int attr colorAccent 0x7f040055
-int attr colorBackgroundFloating 0x7f040056
-int attr colorButtonNormal 0x7f040057
-int attr colorControlActivated 0x7f040058
-int attr colorControlHighlight 0x7f040059
-int attr colorControlNormal 0x7f04005a
-int attr colorError 0x7f04005b
-int attr colorPrimary 0x7f04005c
-int attr colorPrimaryDark 0x7f04005d
-int attr colorSwitchThumbNormal 0x7f04005e
-int attr commitIcon 0x7f04005f
-int attr contentDescription 0x7f040060
-int attr contentInsetEnd 0x7f040061
-int attr contentInsetEndWithActions 0x7f040062
-int attr contentInsetLeft 0x7f040063
-int attr contentInsetRight 0x7f040064
-int attr contentInsetStart 0x7f040065
-int attr contentInsetStartWithNavigation 0x7f040066
-int attr contentScrim 0x7f040067
-int attr controlBackground 0x7f040068
-int attr coordinatorLayoutStyle 0x7f040069
-int attr counterEnabled 0x7f04006a
-int attr counterMaxLength 0x7f04006b
-int attr counterOverflowTextAppearance 0x7f04006c
-int attr counterTextAppearance 0x7f04006d
-int attr customNavigationLayout 0x7f04006e
-int attr defaultQueryHint 0x7f04006f
-int attr dialogPreferredPadding 0x7f040070
-int attr dialogTheme 0x7f040071
-int attr displayOptions 0x7f040072
-int attr divider 0x7f040073
-int attr dividerHorizontal 0x7f040074
-int attr dividerPadding 0x7f040075
-int attr dividerVertical 0x7f040076
-int attr drawableSize 0x7f040077
-int attr drawerArrowStyle 0x7f040078
-int attr dropDownListViewStyle 0x7f040079
-int attr dropdownListPreferredItemHeight 0x7f04007a
-int attr editTextBackground 0x7f04007b
-int attr editTextColor 0x7f04007c
-int attr editTextStyle 0x7f04007d
-int attr elevation 0x7f04007e
-int attr errorEnabled 0x7f04007f
-int attr errorTextAppearance 0x7f040080
-int attr expandActivityOverflowButtonDrawable 0x7f040081
-int attr expanded 0x7f040082
-int attr expandedTitleGravity 0x7f040083
-int attr expandedTitleMargin 0x7f040084
-int attr expandedTitleMarginBottom 0x7f040085
-int attr expandedTitleMarginEnd 0x7f040086
-int attr expandedTitleMarginStart 0x7f040087
-int attr expandedTitleMarginTop 0x7f040088
-int attr expandedTitleTextAppearance 0x7f040089
-int attr fabCustomSize 0x7f04008a
-int attr fabSize 0x7f04008b
-int attr fastScrollEnabled 0x7f04008c
-int attr fastScrollHorizontalThumbDrawable 0x7f04008d
-int attr fastScrollHorizontalTrackDrawable 0x7f04008e
-int attr fastScrollVerticalThumbDrawable 0x7f04008f
-int attr fastScrollVerticalTrackDrawable 0x7f040090
-int attr font 0x7f040091
-int attr fontFamily 0x7f040092
-int attr fontProviderAuthority 0x7f040093
-int attr fontProviderCerts 0x7f040094
-int attr fontProviderFetchStrategy 0x7f040095
-int attr fontProviderFetchTimeout 0x7f040096
-int attr fontProviderPackage 0x7f040097
-int attr fontProviderQuery 0x7f040098
-int attr fontStyle 0x7f040099
-int attr fontWeight 0x7f04009a
-int attr foregroundInsidePadding 0x7f04009b
-int attr gapBetweenBars 0x7f04009c
-int attr goIcon 0x7f04009d
-int attr headerLayout 0x7f04009e
-int attr height 0x7f04009f
-int attr hideOnContentScroll 0x7f0400a0
-int attr hintAnimationEnabled 0x7f0400a1
-int attr hintEnabled 0x7f0400a2
-int attr hintTextAppearance 0x7f0400a3
-int attr homeAsUpIndicator 0x7f0400a4
-int attr homeLayout 0x7f0400a5
-int attr icon 0x7f0400a6
-int attr iconTint 0x7f0400a7
-int attr iconTintMode 0x7f0400a8
-int attr iconifiedByDefault 0x7f0400a9
-int attr imageButtonStyle 0x7f0400aa
-int attr indeterminateProgressStyle 0x7f0400ab
-int attr initialActivityCount 0x7f0400ac
-int attr insetForeground 0x7f0400ad
-int attr isLightTheme 0x7f0400ae
-int attr itemBackground 0x7f0400af
-int attr itemIconTint 0x7f0400b0
-int attr itemPadding 0x7f0400b1
-int attr itemTextAppearance 0x7f0400b2
-int attr itemTextColor 0x7f0400b3
-int attr keylines 0x7f0400b4
-int attr layout 0x7f0400b5
-int attr layoutManager 0x7f0400b6
-int attr layout_anchor 0x7f0400b7
-int attr layout_anchorGravity 0x7f0400b8
-int attr layout_behavior 0x7f0400b9
-int attr layout_collapseMode 0x7f0400ba
-int attr layout_collapseParallaxMultiplier 0x7f0400bb
-int attr layout_dodgeInsetEdges 0x7f0400bc
-int attr layout_insetEdge 0x7f0400bd
-int attr layout_keyline 0x7f0400be
-int attr layout_scrollFlags 0x7f0400bf
-int attr layout_scrollInterpolator 0x7f0400c0
-int attr listChoiceBackgroundIndicator 0x7f0400c1
-int attr listDividerAlertDialog 0x7f0400c2
-int attr listItemLayout 0x7f0400c3
-int attr listLayout 0x7f0400c4
-int attr listMenuViewStyle 0x7f0400c5
-int attr listPopupWindowStyle 0x7f0400c6
-int attr listPreferredItemHeight 0x7f0400c7
-int attr listPreferredItemHeightLarge 0x7f0400c8
-int attr listPreferredItemHeightSmall 0x7f0400c9
-int attr listPreferredItemPaddingLeft 0x7f0400ca
-int attr listPreferredItemPaddingRight 0x7f0400cb
-int attr logo 0x7f0400cc
-int attr logoDescription 0x7f0400cd
-int attr maxActionInlineWidth 0x7f0400ce
-int attr maxButtonHeight 0x7f0400cf
-int attr measureWithLargestChild 0x7f0400d0
-int attr menu 0x7f0400d1
-int attr metaButtonBarButtonStyle 0x7f0400d2
-int attr metaButtonBarStyle 0x7f0400d3
-int attr multiChoiceItemLayout 0x7f0400d4
-int attr navigationContentDescription 0x7f0400d5
-int attr navigationIcon 0x7f0400d6
-int attr navigationMode 0x7f0400d7
-int attr numericModifiers 0x7f0400d8
-int attr overlapAnchor 0x7f0400d9
-int attr paddingBottomNoButtons 0x7f0400da
-int attr paddingEnd 0x7f0400db
-int attr paddingStart 0x7f0400dc
-int attr paddingTopNoTitle 0x7f0400dd
-int attr panelBackground 0x7f0400de
-int attr panelMenuListTheme 0x7f0400df
-int attr panelMenuListWidth 0x7f0400e0
-int attr passwordToggleContentDescription 0x7f0400e1
-int attr passwordToggleDrawable 0x7f0400e2
-int attr passwordToggleEnabled 0x7f0400e3
-int attr passwordToggleTint 0x7f0400e4
-int attr passwordToggleTintMode 0x7f0400e5
-int attr popupMenuStyle 0x7f0400e6
-int attr popupTheme 0x7f0400e7
-int attr popupWindowStyle 0x7f0400e8
-int attr preserveIconSpacing 0x7f0400e9
-int attr pressedTranslationZ 0x7f0400ea
-int attr progressBarPadding 0x7f0400eb
-int attr progressBarStyle 0x7f0400ec
-int attr queryBackground 0x7f0400ed
-int attr queryHint 0x7f0400ee
-int attr radioButtonStyle 0x7f0400ef
-int attr ratingBarStyle 0x7f0400f0
-int attr ratingBarStyleIndicator 0x7f0400f1
-int attr ratingBarStyleSmall 0x7f0400f2
-int attr reverseLayout 0x7f0400f3
-int attr rippleColor 0x7f0400f4
-int attr scrimAnimationDuration 0x7f0400f5
-int attr scrimVisibleHeightTrigger 0x7f0400f6
-int attr searchHintIcon 0x7f0400f7
-int attr searchIcon 0x7f0400f8
-int attr searchViewStyle 0x7f0400f9
-int attr seekBarStyle 0x7f0400fa
-int attr selectableItemBackground 0x7f0400fb
-int attr selectableItemBackgroundBorderless 0x7f0400fc
-int attr showAsAction 0x7f0400fd
-int attr showDividers 0x7f0400fe
-int attr showText 0x7f0400ff
-int attr showTitle 0x7f040100
-int attr singleChoiceItemLayout 0x7f040101
-int attr spanCount 0x7f040102
-int attr spinBars 0x7f040103
-int attr spinnerDropDownItemStyle 0x7f040104
-int attr spinnerStyle 0x7f040105
-int attr splitTrack 0x7f040106
-int attr srcCompat 0x7f040107
-int attr stackFromEnd 0x7f040108
-int attr state_above_anchor 0x7f040109
-int attr state_collapsed 0x7f04010a
-int attr state_collapsible 0x7f04010b
-int attr statusBarBackground 0x7f04010c
-int attr statusBarScrim 0x7f04010d
-int attr subMenuArrow 0x7f04010e
-int attr submitBackground 0x7f04010f
-int attr subtitle 0x7f040110
-int attr subtitleTextAppearance 0x7f040111
-int attr subtitleTextColor 0x7f040112
-int attr subtitleTextStyle 0x7f040113
-int attr suggestionRowLayout 0x7f040114
-int attr switchMinWidth 0x7f040115
-int attr switchPadding 0x7f040116
-int attr switchStyle 0x7f040117
-int attr switchTextAppearance 0x7f040118
-int attr tabBackground 0x7f040119
-int attr tabContentStart 0x7f04011a
-int attr tabGravity 0x7f04011b
-int attr tabIndicatorColor 0x7f04011c
-int attr tabIndicatorHeight 0x7f04011d
-int attr tabMaxWidth 0x7f04011e
-int attr tabMinWidth 0x7f04011f
-int attr tabMode 0x7f040120
-int attr tabPadding 0x7f040121
-int attr tabPaddingBottom 0x7f040122
-int attr tabPaddingEnd 0x7f040123
-int attr tabPaddingStart 0x7f040124
-int attr tabPaddingTop 0x7f040125
-int attr tabSelectedTextColor 0x7f040126
-int attr tabTextAppearance 0x7f040127
-int attr tabTextColor 0x7f040128
-int attr textAllCaps 0x7f040129
-int attr textAppearanceLargePopupMenu 0x7f04012a
-int attr textAppearanceListItem 0x7f04012b
-int attr textAppearanceListItemSecondary 0x7f04012c
-int attr textAppearanceListItemSmall 0x7f04012d
-int attr textAppearancePopupMenuHeader 0x7f04012e
-int attr textAppearanceSearchResultSubtitle 0x7f04012f
-int attr textAppearanceSearchResultTitle 0x7f040130
-int attr textAppearanceSmallPopupMenu 0x7f040131
-int attr textColorAlertDialogListItem 0x7f040132
-int attr textColorError 0x7f040133
-int attr textColorSearchUrl 0x7f040134
-int attr theme 0x7f040135
-int attr thickness 0x7f040136
-int attr thumbTextPadding 0x7f040137
-int attr thumbTint 0x7f040138
-int attr thumbTintMode 0x7f040139
-int attr tickMark 0x7f04013a
-int attr tickMarkTint 0x7f04013b
-int attr tickMarkTintMode 0x7f04013c
-int attr tint 0x7f04013d
-int attr tintMode 0x7f04013e
-int attr title 0x7f04013f
-int attr titleEnabled 0x7f040140
-int attr titleMargin 0x7f040141
-int attr titleMarginBottom 0x7f040142
-int attr titleMarginEnd 0x7f040143
-int attr titleMarginStart 0x7f040144
-int attr titleMarginTop 0x7f040145
-int attr titleMargins 0x7f040146
-int attr titleTextAppearance 0x7f040147
-int attr titleTextColor 0x7f040148
-int attr titleTextStyle 0x7f040149
-int attr toolbarId 0x7f04014a
-int attr toolbarNavigationButtonStyle 0x7f04014b
-int attr toolbarStyle 0x7f04014c
-int attr tooltipForegroundColor 0x7f04014d
-int attr tooltipFrameBackground 0x7f04014e
-int attr tooltipText 0x7f04014f
-int attr track 0x7f040150
-int attr trackTint 0x7f040151
-int attr trackTintMode 0x7f040152
-int attr useCompatPadding 0x7f040153
-int attr viewInflaterClass 0x7f040154
-int attr voiceIcon 0x7f040155
-int attr windowActionBar 0x7f040156
-int attr windowActionBarOverlay 0x7f040157
-int attr windowActionModeOverlay 0x7f040158
-int attr windowFixedHeightMajor 0x7f040159
-int attr windowFixedHeightMinor 0x7f04015a
-int attr windowFixedWidthMajor 0x7f04015b
-int attr windowFixedWidthMinor 0x7f04015c
-int attr windowMinWidthMajor 0x7f04015d
-int attr windowMinWidthMinor 0x7f04015e
-int attr windowNoTitle 0x7f04015f
-int bool abc_action_bar_embed_tabs 0x7f050000
-int bool abc_allow_stacked_button_bar 0x7f050001
-int bool abc_config_actionMenuItemAllCaps 0x7f050002
-int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050003
-int color abc_background_cache_hint_selector_material_dark 0x7f060000
-int color abc_background_cache_hint_selector_material_light 0x7f060001
-int color abc_btn_colored_borderless_text_material 0x7f060002
-int color abc_btn_colored_text_material 0x7f060003
-int color abc_color_highlight_material 0x7f060004
-int color abc_hint_foreground_material_dark 0x7f060005
-int color abc_hint_foreground_material_light 0x7f060006
-int color abc_input_method_navigation_guard 0x7f060007
-int color abc_primary_text_disable_only_material_dark 0x7f060008
-int color abc_primary_text_disable_only_material_light 0x7f060009
-int color abc_primary_text_material_dark 0x7f06000a
-int color abc_primary_text_material_light 0x7f06000b
-int color abc_search_url_text 0x7f06000c
-int color abc_search_url_text_normal 0x7f06000d
-int color abc_search_url_text_pressed 0x7f06000e
-int color abc_search_url_text_selected 0x7f06000f
-int color abc_secondary_text_material_dark 0x7f060010
-int color abc_secondary_text_material_light 0x7f060011
-int color abc_tint_btn_checkable 0x7f060012
-int color abc_tint_default 0x7f060013
-int color abc_tint_edittext 0x7f060014
-int color abc_tint_seek_thumb 0x7f060015
-int color abc_tint_spinner 0x7f060016
-int color abc_tint_switch_track 0x7f060017
-int color accent_material_dark 0x7f060018
-int color accent_material_light 0x7f060019
-int color background_floating_material_dark 0x7f06001a
-int color background_floating_material_light 0x7f06001b
-int color background_material_dark 0x7f06001c
-int color background_material_light 0x7f06001d
-int color black_overlay 0x7f06001e
-int color bright_foreground_disabled_material_dark 0x7f06001f
-int color bright_foreground_disabled_material_light 0x7f060020
-int color bright_foreground_inverse_material_dark 0x7f060021
-int color bright_foreground_inverse_material_light 0x7f060022
-int color bright_foreground_material_dark 0x7f060023
-int color bright_foreground_material_light 0x7f060024
-int color btn_green 0x7f060025
-int color button_material_dark 0x7f060026
-int color button_material_light 0x7f060027
-int color design_bottom_navigation_shadow_color 0x7f060028
-int color design_error 0x7f060029
-int color design_fab_shadow_end_color 0x7f06002a
-int color design_fab_shadow_mid_color 0x7f06002b
-int color design_fab_shadow_start_color 0x7f06002c
-int color design_fab_stroke_end_inner_color 0x7f06002d
-int color design_fab_stroke_end_outer_color 0x7f06002e
-int color design_fab_stroke_top_inner_color 0x7f06002f
-int color design_fab_stroke_top_outer_color 0x7f060030
-int color design_snackbar_background_color 0x7f060031
-int color design_tint_password_toggle 0x7f060032
-int color dim_foreground_disabled_material_dark 0x7f060033
-int color dim_foreground_disabled_material_light 0x7f060034
-int color dim_foreground_material_dark 0x7f060035
-int color dim_foreground_material_light 0x7f060036
-int color emc_blue 0x7f060037
-int color error_color_material 0x7f060038
-int color foreground_material_dark 0x7f060039
-int color foreground_material_light 0x7f06003a
-int color grey 0x7f06003b
-int color highlighted_text_material_dark 0x7f06003c
-int color highlighted_text_material_light 0x7f06003d
-int color ic_launcher_background 0x7f06003e
-int color material_blue_grey_800 0x7f06003f
-int color material_blue_grey_900 0x7f060040
-int color material_blue_grey_950 0x7f060041
-int color material_deep_teal_200 0x7f060042
-int color material_deep_teal_500 0x7f060043
-int color material_grey_100 0x7f060044
-int color material_grey_300 0x7f060045
-int color material_grey_50 0x7f060046
-int color material_grey_600 0x7f060047
-int color material_grey_800 0x7f060048
-int color material_grey_850 0x7f060049
-int color material_grey_900 0x7f06004a
-int color notification_action_color_filter 0x7f06004b
-int color notification_icon_bg_color 0x7f06004c
-int color notification_material_background_media_default_color 0x7f06004d
-int color primary_dark_material_dark 0x7f06004e
-int color primary_dark_material_light 0x7f06004f
-int color primary_material_dark 0x7f060050
-int color primary_material_light 0x7f060051
-int color primary_text_default_material_dark 0x7f060052
-int color primary_text_default_material_light 0x7f060053
-int color primary_text_disabled_material_dark 0x7f060054
-int color primary_text_disabled_material_light 0x7f060055
-int color ripple_material_dark 0x7f060056
-int color ripple_material_light 0x7f060057
-int color secondary_text_default_material_dark 0x7f060058
-int color secondary_text_default_material_light 0x7f060059
-int color secondary_text_disabled_material_dark 0x7f06005a
-int color secondary_text_disabled_material_light 0x7f06005b
-int color switch_thumb_disabled_material_dark 0x7f06005c
-int color switch_thumb_disabled_material_light 0x7f06005d
-int color switch_thumb_material_dark 0x7f06005e
-int color switch_thumb_material_light 0x7f06005f
-int color switch_thumb_normal_material_dark 0x7f060060
-int color switch_thumb_normal_material_light 0x7f060061
-int color tooltip_background_dark 0x7f060062
-int color tooltip_background_light 0x7f060063
-int color white 0x7f060064
-int dimen abc_action_bar_content_inset_material 0x7f070000
-int dimen abc_action_bar_content_inset_with_nav 0x7f070001
-int dimen abc_action_bar_default_height_material 0x7f070002
-int dimen abc_action_bar_default_padding_end_material 0x7f070003
-int dimen abc_action_bar_default_padding_start_material 0x7f070004
-int dimen abc_action_bar_elevation_material 0x7f070005
-int dimen abc_action_bar_icon_vertical_padding_material 0x7f070006
-int dimen abc_action_bar_overflow_padding_end_material 0x7f070007
-int dimen abc_action_bar_overflow_padding_start_material 0x7f070008
-int dimen abc_action_bar_progress_bar_size 0x7f070009
-int dimen abc_action_bar_stacked_max_height 0x7f07000a
-int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c
-int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d
-int dimen abc_action_button_min_height_material 0x7f07000e
-int dimen abc_action_button_min_width_material 0x7f07000f
-int dimen abc_action_button_min_width_overflow_material 0x7f070010
-int dimen abc_alert_dialog_button_bar_height 0x7f070011
-int dimen abc_alert_dialog_button_dimen 0x7f070012
-int dimen abc_button_inset_horizontal_material 0x7f070013
-int dimen abc_button_inset_vertical_material 0x7f070014
-int dimen abc_button_padding_horizontal_material 0x7f070015
-int dimen abc_button_padding_vertical_material 0x7f070016
-int dimen abc_cascading_menus_min_smallest_width 0x7f070017
-int dimen abc_config_prefDialogWidth 0x7f070018
-int dimen abc_control_corner_material 0x7f070019
-int dimen abc_control_inset_material 0x7f07001a
-int dimen abc_control_padding_material 0x7f07001b
-int dimen abc_dialog_fixed_height_major 0x7f07001c
-int dimen abc_dialog_fixed_height_minor 0x7f07001d
-int dimen abc_dialog_fixed_width_major 0x7f07001e
-int dimen abc_dialog_fixed_width_minor 0x7f07001f
-int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070020
-int dimen abc_dialog_list_padding_top_no_title 0x7f070021
-int dimen abc_dialog_min_width_major 0x7f070022
-int dimen abc_dialog_min_width_minor 0x7f070023
-int dimen abc_dialog_padding_material 0x7f070024
-int dimen abc_dialog_padding_top_material 0x7f070025
-int dimen abc_dialog_title_divider_material 0x7f070026
-int dimen abc_disabled_alpha_material_dark 0x7f070027
-int dimen abc_disabled_alpha_material_light 0x7f070028
-int dimen abc_dropdownitem_icon_width 0x7f070029
-int dimen abc_dropdownitem_text_padding_left 0x7f07002a
-int dimen abc_dropdownitem_text_padding_right 0x7f07002b
-int dimen abc_edit_text_inset_bottom_material 0x7f07002c
-int dimen abc_edit_text_inset_horizontal_material 0x7f07002d
-int dimen abc_edit_text_inset_top_material 0x7f07002e
-int dimen abc_floating_window_z 0x7f07002f
-int dimen abc_list_item_padding_horizontal_material 0x7f070030
-int dimen abc_panel_menu_list_width 0x7f070031
-int dimen abc_progress_bar_height_material 0x7f070032
-int dimen abc_search_view_preferred_height 0x7f070033
-int dimen abc_search_view_preferred_width 0x7f070034
-int dimen abc_seekbar_track_background_height_material 0x7f070035
-int dimen abc_seekbar_track_progress_height_material 0x7f070036
-int dimen abc_select_dialog_padding_start_material 0x7f070037
-int dimen abc_switch_padding 0x7f070038
-int dimen abc_text_size_body_1_material 0x7f070039
-int dimen abc_text_size_body_2_material 0x7f07003a
-int dimen abc_text_size_button_material 0x7f07003b
-int dimen abc_text_size_caption_material 0x7f07003c
-int dimen abc_text_size_display_1_material 0x7f07003d
-int dimen abc_text_size_display_2_material 0x7f07003e
-int dimen abc_text_size_display_3_material 0x7f07003f
-int dimen abc_text_size_display_4_material 0x7f070040
-int dimen abc_text_size_headline_material 0x7f070041
-int dimen abc_text_size_large_material 0x7f070042
-int dimen abc_text_size_medium_material 0x7f070043
-int dimen abc_text_size_menu_header_material 0x7f070044
-int dimen abc_text_size_menu_material 0x7f070045
-int dimen abc_text_size_small_material 0x7f070046
-int dimen abc_text_size_subhead_material 0x7f070047
-int dimen abc_text_size_subtitle_material_toolbar 0x7f070048
-int dimen abc_text_size_title_material 0x7f070049
-int dimen abc_text_size_title_material_toolbar 0x7f07004a
-int dimen activity_horizontal_margin 0x7f07004b
-int dimen activity_vertical_margin 0x7f07004c
-int dimen compat_button_inset_horizontal_material 0x7f07004d
-int dimen compat_button_inset_vertical_material 0x7f07004e
-int dimen compat_button_padding_horizontal_material 0x7f07004f
-int dimen compat_button_padding_vertical_material 0x7f070050
-int dimen compat_control_corner_material 0x7f070051
-int dimen design_appbar_elevation 0x7f070052
-int dimen design_bottom_navigation_active_item_max_width 0x7f070053
-int dimen design_bottom_navigation_active_text_size 0x7f070054
-int dimen design_bottom_navigation_elevation 0x7f070055
-int dimen design_bottom_navigation_height 0x7f070056
-int dimen design_bottom_navigation_item_max_width 0x7f070057
-int dimen design_bottom_navigation_item_min_width 0x7f070058
-int dimen design_bottom_navigation_margin 0x7f070059
-int dimen design_bottom_navigation_shadow_height 0x7f07005a
-int dimen design_bottom_navigation_text_size 0x7f07005b
-int dimen design_bottom_sheet_modal_elevation 0x7f07005c
-int dimen design_bottom_sheet_peek_height_min 0x7f07005d
-int dimen design_fab_border_width 0x7f07005e
-int dimen design_fab_elevation 0x7f07005f
-int dimen design_fab_image_size 0x7f070060
-int dimen design_fab_size_mini 0x7f070061
-int dimen design_fab_size_normal 0x7f070062
-int dimen design_fab_translation_z_pressed 0x7f070063
-int dimen design_navigation_elevation 0x7f070064
-int dimen design_navigation_icon_padding 0x7f070065
-int dimen design_navigation_icon_size 0x7f070066
-int dimen design_navigation_max_width 0x7f070067
-int dimen design_navigation_padding_bottom 0x7f070068
-int dimen design_navigation_separator_vertical_padding 0x7f070069
-int dimen design_snackbar_action_inline_max_width 0x7f07006a
-int dimen design_snackbar_background_corner_radius 0x7f07006b
-int dimen design_snackbar_elevation 0x7f07006c
-int dimen design_snackbar_extra_spacing_horizontal 0x7f07006d
-int dimen design_snackbar_max_width 0x7f07006e
-int dimen design_snackbar_min_width 0x7f07006f
-int dimen design_snackbar_padding_horizontal 0x7f070070
-int dimen design_snackbar_padding_vertical 0x7f070071
-int dimen design_snackbar_padding_vertical_2lines 0x7f070072
-int dimen design_snackbar_text_size 0x7f070073
-int dimen design_tab_max_width 0x7f070074
-int dimen design_tab_scrollable_min_width 0x7f070075
-int dimen design_tab_text_size 0x7f070076
-int dimen design_tab_text_size_2line 0x7f070077
-int dimen disabled_alpha_material_dark 0x7f070078
-int dimen disabled_alpha_material_light 0x7f070079
-int dimen fastscroll_default_thickness 0x7f07007a
-int dimen fastscroll_margin 0x7f07007b
-int dimen fastscroll_minimum_range 0x7f07007c
-int dimen highlight_alpha_material_colored 0x7f07007d
-int dimen highlight_alpha_material_dark 0x7f07007e
-int dimen highlight_alpha_material_light 0x7f07007f
-int dimen hint_alpha_material_dark 0x7f070080
-int dimen hint_alpha_material_light 0x7f070081
-int dimen hint_pressed_alpha_material_dark 0x7f070082
-int dimen hint_pressed_alpha_material_light 0x7f070083
-int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070084
-int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070085
-int dimen item_touch_helper_swipe_escape_velocity 0x7f070086
-int dimen notification_action_icon_size 0x7f070087
-int dimen notification_action_text_size 0x7f070088
-int dimen notification_big_circle_margin 0x7f070089
-int dimen notification_content_margin_start 0x7f07008a
-int dimen notification_large_icon_height 0x7f07008b
-int dimen notification_large_icon_width 0x7f07008c
-int dimen notification_main_column_padding_top 0x7f07008d
-int dimen notification_media_narrow_margin 0x7f07008e
-int dimen notification_right_icon_size 0x7f07008f
-int dimen notification_right_side_padding_top 0x7f070090
-int dimen notification_small_icon_background_padding 0x7f070091
-int dimen notification_small_icon_size_as_large 0x7f070092
-int dimen notification_subtext_size 0x7f070093
-int dimen notification_top_pad 0x7f070094
-int dimen notification_top_pad_large_text 0x7f070095
-int dimen text_margin 0x7f070096
-int dimen tooltip_corner_radius 0x7f070097
-int dimen tooltip_horizontal_padding 0x7f070098
-int dimen tooltip_margin 0x7f070099
-int dimen tooltip_precise_anchor_extra_offset 0x7f07009a
-int dimen tooltip_precise_anchor_threshold 0x7f07009b
-int dimen tooltip_vertical_padding 0x7f07009c
-int dimen tooltip_y_offset_non_touch 0x7f07009d
-int dimen tooltip_y_offset_touch 0x7f07009e
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f080006
-int drawable abc_action_bar_item_background_material 0x7f080007
-int drawable abc_btn_borderless_material 0x7f080008
-int drawable abc_btn_check_material 0x7f080009
-int drawable abc_btn_check_to_on_mtrl_000 0x7f08000a
-int drawable abc_btn_check_to_on_mtrl_015 0x7f08000b
-int drawable abc_btn_colored_material 0x7f08000c
-int drawable abc_btn_default_mtrl_shape 0x7f08000d
-int drawable abc_btn_radio_material 0x7f08000e
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000f
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f080010
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f080011
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f080012
-int drawable abc_cab_background_internal_bg 0x7f080013
-int drawable abc_cab_background_top_material 0x7f080014
-int drawable abc_cab_background_top_mtrl_alpha 0x7f080015
-int drawable abc_control_background_material 0x7f080016
-int drawable abc_dialog_material_background 0x7f080017
-int drawable abc_edit_text_material 0x7f080018
-int drawable abc_ic_ab_back_material 0x7f080019
-int drawable abc_ic_arrow_drop_right_black_24dp 0x7f08001a
-int drawable abc_ic_clear_material 0x7f08001b
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f08001c
-int drawable abc_ic_go_search_api_material 0x7f08001d
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001e
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001f
-int drawable abc_ic_menu_overflow_material 0x7f080020
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f080021
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f080022
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f080023
-int drawable abc_ic_search_api_material 0x7f080024
-int drawable abc_ic_star_black_16dp 0x7f080025
-int drawable abc_ic_star_black_36dp 0x7f080026
-int drawable abc_ic_star_black_48dp 0x7f080027
-int drawable abc_ic_star_half_black_16dp 0x7f080028
-int drawable abc_ic_star_half_black_36dp 0x7f080029
-int drawable abc_ic_star_half_black_48dp 0x7f08002a
-int drawable abc_ic_voice_search_api_material 0x7f08002b
-int drawable abc_item_background_holo_dark 0x7f08002c
-int drawable abc_item_background_holo_light 0x7f08002d
-int drawable abc_list_divider_mtrl_alpha 0x7f08002e
-int drawable abc_list_focused_holo 0x7f08002f
-int drawable abc_list_longpressed_holo 0x7f080030
-int drawable abc_list_pressed_holo_dark 0x7f080031
-int drawable abc_list_pressed_holo_light 0x7f080032
-int drawable abc_list_selector_background_transition_holo_dark 0x7f080033
-int drawable abc_list_selector_background_transition_holo_light 0x7f080034
-int drawable abc_list_selector_disabled_holo_dark 0x7f080035
-int drawable abc_list_selector_disabled_holo_light 0x7f080036
-int drawable abc_list_selector_holo_dark 0x7f080037
-int drawable abc_list_selector_holo_light 0x7f080038
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080039
-int drawable abc_popup_background_mtrl_mult 0x7f08003a
-int drawable abc_ratingbar_indicator_material 0x7f08003b
-int drawable abc_ratingbar_material 0x7f08003c
-int drawable abc_ratingbar_small_material 0x7f08003d
-int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003e
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003f
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f080040
-int drawable abc_scrubber_primary_mtrl_alpha 0x7f080041
-int drawable abc_scrubber_track_mtrl_alpha 0x7f080042
-int drawable abc_seekbar_thumb_material 0x7f080043
-int drawable abc_seekbar_tick_mark_material 0x7f080044
-int drawable abc_seekbar_track_material 0x7f080045
-int drawable abc_spinner_mtrl_am_alpha 0x7f080046
-int drawable abc_spinner_textfield_background_material 0x7f080047
-int drawable abc_switch_thumb_material 0x7f080048
-int drawable abc_switch_track_mtrl_alpha 0x7f080049
-int drawable abc_tab_indicator_material 0x7f08004a
-int drawable abc_tab_indicator_mtrl_alpha 0x7f08004b
-int drawable abc_text_cursor_material 0x7f08004c
-int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004d
-int drawable abc_text_select_handle_left_mtrl_light 0x7f08004e
-int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004f
-int drawable abc_text_select_handle_middle_mtrl_light 0x7f080050
-int drawable abc_text_select_handle_right_mtrl_dark 0x7f080051
-int drawable abc_text_select_handle_right_mtrl_light 0x7f080052
-int drawable abc_textfield_activated_mtrl_alpha 0x7f080053
-int drawable abc_textfield_default_mtrl_alpha 0x7f080054
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080055
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f080056
-int drawable abc_textfield_search_material 0x7f080057
-int drawable abc_vector_test 0x7f080058
-int drawable appicon 0x7f080059
-int drawable avd_hide_password 0x7f08005a
-int drawable avd_show_password 0x7f08005b
-int drawable black_button 0x7f08005c
-int drawable check 0x7f08005d
-int drawable check_button 0x7f08005e
-int drawable corecapture 0x7f08005f
-int drawable design_bottom_navigation_item_background 0x7f080060
-int drawable design_fab_background 0x7f080061
-int drawable design_ic_visibility 0x7f080062
-int drawable design_ic_visibility_off 0x7f080063
-int drawable design_password_eye 0x7f080064
-int drawable design_snackbar_background 0x7f080065
-int drawable emclogo 0x7f080066
-int drawable gray_button 0x7f080067
-int drawable green_button 0x7f080068
-int drawable ic_next 0x7f080069
-int drawable leapsnap 0x7f08006a
-int drawable navigation_empty_icon 0x7f08006b
-int drawable notification_action_background 0x7f08006c
-int drawable notification_bg 0x7f08006d
-int drawable notification_bg_low 0x7f08006e
-int drawable notification_bg_low_normal 0x7f08006f
-int drawable notification_bg_low_pressed 0x7f080070
-int drawable notification_bg_normal 0x7f080071
-int drawable notification_bg_normal_pressed 0x7f080072
-int drawable notification_icon_background 0x7f080073
-int drawable notification_template_icon_bg 0x7f080074
-int drawable notification_template_icon_low_bg 0x7f080075
-int drawable notification_tile_bg 0x7f080076
-int drawable notify_panel_notification_icon_bg 0x7f080077
-int drawable overlay_back 0x7f080078
-int drawable overlay_camera 0x7f080079
-int drawable overlay_focusred 0x7f08007a
-int drawable overlay_levelred 0x7f08007b
-int drawable overlay_lightred 0x7f08007c
-int drawable overlay_movementred 0x7f08007d
-int drawable overlay_quality 0x7f08007e
-int drawable overlay_torch 0x7f08007f
-int drawable quadback 0x7f080080
-int drawable quadcrop 0x7f080081
-int drawable snap 0x7f080082
-int drawable snaphr 0x7f080083
-int drawable tooltip_frame_dark 0x7f080084
-int drawable tooltip_frame_light 0x7f080085
-int drawable white_button 0x7f080086
-int drawable whiteborder_button 0x7f080087
-int id ABAutoCrop 0x7f090000
-int id ABBarcode 0x7f090001
-int id ABBlackWhite 0x7f090002
-int id ABCrop 0x7f090003
-int id ABDarker 0x7f090004
-int id ABDecreaseContrast 0x7f090005
-int id ABDeskew 0x7f090006
-int id ABGray 0x7f090007
-int id ABIncreaseContrast 0x7f090008
-int id ABInfo 0x7f090009
-int id ABLighter 0x7f09000a
-int id ABMainGroup 0x7f09000b
-int id ABQuadCrop 0x7f09000c
-int id ABRemoveNoise 0x7f09000d
-int id ABResize 0x7f09000e
-int id ABRotate180 0x7f09000f
-int id ABRotateLeft 0x7f090010
-int id ABRotateRight 0x7f090011
-int id ALT 0x7f090012
-int id BottomBar 0x7f090013
-int id CTRL 0x7f090014
-int id CropBackButton 0x7f090015
-int id CropButtonSpace 0x7f090016
-int id CropSubmitButton 0x7f090017
-int id CropView 0x7f090018
-int id DeviceIDLabel 0x7f090019
-int id EnhanceLayout 0x7f09001a
-int id FUNCTION 0x7f09001b
-int id ImageBar 0x7f09001c
-int id ImageView 0x7f09001d
-int id LinearResults 0x7f09001e
-int id META 0x7f09001f
-int id ProgressStatusBar 0x7f090020
-int id QuadrilateralCropLayout 0x7f090021
-int id QuadrilateralCropView 0x7f090022
-int id ResultsLayout 0x7f090023
-int id SHIFT 0x7f090024
-int id SYM 0x7f090025
-int id SettingsButton 0x7f090026
-int id UndoAllButton 0x7f090027
-int id UndoButton 0x7f090028
-int id action0 0x7f090029
-int id action_bar 0x7f09002a
-int id action_bar_activity_content 0x7f09002b
-int id action_bar_container 0x7f09002c
-int id action_bar_root 0x7f09002d
-int id action_bar_spinner 0x7f09002e
-int id action_bar_subtitle 0x7f09002f
-int id action_bar_title 0x7f090030
-int id action_container 0x7f090031
-int id action_context_bar 0x7f090032
-int id action_divider 0x7f090033
-int id action_image 0x7f090034
-int id action_menu_divider 0x7f090035
-int id action_menu_presenter 0x7f090036
-int id action_mode_bar 0x7f090037
-int id action_mode_bar_stub 0x7f090038
-int id action_mode_close_button 0x7f090039
-int id action_text 0x7f09003a
-int id actions 0x7f09003b
-int id activity_chooser_view_content 0x7f09003c
-int id add 0x7f09003d
-int id alertTitle 0x7f09003e
-int id all 0x7f09003f
-int id always 0x7f090040
-int id async 0x7f090041
-int id auto 0x7f090042
-int id beginning 0x7f090043
-int id blocking 0x7f090044
-int id bottom 0x7f090045
-int id btnFinish 0x7f090046
-int id btnPDF 0x7f090047
-int id btn_SendToSnap 0x7f090048
-int id btn_export 0x7f090049
-int id buttonPanel 0x7f09004a
-int id cancel_action 0x7f09004b
-int id center 0x7f09004c
-int id center_horizontal 0x7f09004d
-int id center_vertical 0x7f09004e
-int id checkbox 0x7f09004f
-int id chronometer 0x7f090050
-int id clip_horizontal 0x7f090051
-int id clip_vertical 0x7f090052
-int id collapseActionView 0x7f090053
-int id container 0x7f090054
-int id contentPanel 0x7f090055
-int id coordinator 0x7f090056
-int id custom 0x7f090057
-int id customPanel 0x7f090058
-int id decor_content_parent 0x7f090059
-int id default_activity_button 0x7f09005a
-int id design_bottom_sheet 0x7f09005b
-int id design_menu_item_action_area 0x7f09005c
-int id design_menu_item_action_area_stub 0x7f09005d
-int id design_menu_item_text 0x7f09005e
-int id design_navigation_view 0x7f09005f
-int id disableHome 0x7f090060
-int id edit_query 0x7f090061
-int id end 0x7f090062
-int id end_padder 0x7f090063
-int id enhancepicturebtn 0x7f090064
-int id enterAlways 0x7f090065
-int id enterAlwaysCollapsed 0x7f090066
-int id exitUntilCollapsed 0x7f090067
-int id expand_activities_button 0x7f090068
-int id expanded_menu 0x7f090069
-int id fill 0x7f09006a
-int id fill_horizontal 0x7f09006b
-int id fill_vertical 0x7f09006c
-int id firstScreenRl 0x7f09006d
-int id fixed 0x7f09006e
-int id floatSettings 0x7f09006f
-int id floatingCamera 0x7f090070
-int id floatingGallery 0x7f090071
-int id forever 0x7f090072
-int id ghost_view 0x7f090073
-int id home 0x7f090074
-int id homeAsUp 0x7f090075
-int id icon 0x7f090076
-int id icon_group 0x7f090077
-int id id_buttonlayout 0x7f090078
-int id id_capturebutton 0x7f090079
-int id id_centerspace 0x7f09007a
-int id id_guidelinesview 0x7f09007b
-int id id_quadcropbackbutton 0x7f09007c
-int id id_quadcropbuttonspace 0x7f09007d
-int id id_quadcropcropbutton 0x7f09007e
-int id id_quadcropview 0x7f09007f
-int id ifRoom 0x7f090080
-int id image 0x7f090081
-int id imageView 0x7f090082
-int id imageView2 0x7f090083
-int id info 0x7f090084
-int id italic 0x7f090085
-int id item_touch_helper_previous_elevation 0x7f090086
-int id largeLabel 0x7f090087
-int id left 0x7f090088
-int id line1 0x7f090089
-int id line3 0x7f09008a
-int id listMode 0x7f09008b
-int id list_item 0x7f09008c
-int id masked 0x7f09008d
-int id media_actions 0x7f09008e
-int id message 0x7f09008f
-int id middle 0x7f090090
-int id mini 0x7f090091
-int id multiply 0x7f090092
-int id navigation_header_container 0x7f090093
-int id never 0x7f090094
-int id none 0x7f090095
-int id normal 0x7f090096
-int id notification_background 0x7f090097
-int id notification_main_column 0x7f090098
-int id notification_main_column_container 0x7f090099
-int id parallax 0x7f09009a
-int id parentPanel 0x7f09009b
-int id parent_matrix 0x7f09009c
-int id pin 0x7f09009d
-int id progress_circular 0x7f09009e
-int id progress_horizontal 0x7f09009f
-int id radio 0x7f0900a0
-int id right 0x7f0900a1
-int id right_icon 0x7f0900a2
-int id right_side 0x7f0900a3
-int id save_image_matrix 0x7f0900a4
-int id save_non_transition_alpha 0x7f0900a5
-int id save_scale_type 0x7f0900a6
-int id screen 0x7f0900a7
-int id scroll 0x7f0900a8
-int id scrollContainer 0x7f0900a9
-int id scrollIndicatorDown 0x7f0900aa
-int id scrollIndicatorUp 0x7f0900ab
-int id scrollView 0x7f0900ac
-int id scrollable 0x7f0900ad
-int id search_badge 0x7f0900ae
-int id search_bar 0x7f0900af
-int id search_button 0x7f0900b0
-int id search_close_btn 0x7f0900b1
-int id search_edit_frame 0x7f0900b2
-int id search_go_btn 0x7f0900b3
-int id search_mag_icon 0x7f0900b4
-int id search_plate 0x7f0900b5
-int id search_src_text 0x7f0900b6
-int id search_voice_btn 0x7f0900b7
-int id select_dialog_listview 0x7f0900b8
-int id shortcut 0x7f0900b9
-int id showCustom 0x7f0900ba
-int id showHome 0x7f0900bb
-int id showTitle 0x7f0900bc
-int id smallLabel 0x7f0900bd
-int id snackbar_action 0x7f0900be
-int id snackbar_text 0x7f0900bf
-int id snap 0x7f0900c0
-int id spacer 0x7f0900c1
-int id split_action_bar 0x7f0900c2
-int id src_atop 0x7f0900c3
-int id src_in 0x7f0900c4
-int id src_over 0x7f0900c5
-int id start 0x7f0900c6
-int id status_bar_latest_event_content 0x7f0900c7
-int id submenuarrow 0x7f0900c8
-int id submit_area 0x7f0900c9
-int id tabMode 0x7f0900ca
-int id tag_transition_group 0x7f0900cb
-int id takecontinuouspicturesbtn 0x7f0900cc
-int id takepicturebtn 0x7f0900cd
-int id text 0x7f0900ce
-int id text2 0x7f0900cf
-int id textSpacerNoButtons 0x7f0900d0
-int id textSpacerNoTitle 0x7f0900d1
-int id text_input_password_toggle 0x7f0900d2
-int id textinput_counter 0x7f0900d3
-int id textinput_error 0x7f0900d4
-int id time 0x7f0900d5
-int id title 0x7f0900d6
-int id titleDividerNoCustom 0x7f0900d7
-int id title_template 0x7f0900d8
-int id top 0x7f0900d9
-int id topPanel 0x7f0900da
-int id touch_outside 0x7f0900db
-int id transition_current_scene 0x7f0900dc
-int id transition_layout_save 0x7f0900dd
-int id transition_position 0x7f0900de
-int id transition_scene_layoutid_cache 0x7f0900df
-int id transition_transform 0x7f0900e0
-int id uniform 0x7f0900e1
-int id up 0x7f0900e2
-int id useLogo 0x7f0900e3
-int id view_offset_helper 0x7f0900e4
-int id visible 0x7f0900e5
-int id withText 0x7f0900e6
-int id wrap_content 0x7f0900e7
-int integer abc_config_activityDefaultDur 0x7f0a0000
-int integer abc_config_activityShortDur 0x7f0a0001
-int integer app_bar_elevation_anim_duration 0x7f0a0002
-int integer bottom_sheet_slide_duration 0x7f0a0003
-int integer cancel_button_image_alpha 0x7f0a0004
-int integer config_tooltipAnimTime 0x7f0a0005
-int integer design_snackbar_text_max_lines 0x7f0a0006
-int integer hide_password_duration 0x7f0a0007
-int integer show_password_duration 0x7f0a0008
-int integer status_bar_notification_info_maxnum 0x7f0a0009
-int layout abc_action_bar_title_item 0x7f0b0000
-int layout abc_action_bar_up_container 0x7f0b0001
-int layout abc_action_menu_item_layout 0x7f0b0002
-int layout abc_action_menu_layout 0x7f0b0003
-int layout abc_action_mode_bar 0x7f0b0004
-int layout abc_action_mode_close_item_material 0x7f0b0005
-int layout abc_activity_chooser_view 0x7f0b0006
-int layout abc_activity_chooser_view_list_item 0x7f0b0007
-int layout abc_alert_dialog_button_bar_material 0x7f0b0008
-int layout abc_alert_dialog_material 0x7f0b0009
-int layout abc_alert_dialog_title_material 0x7f0b000a
-int layout abc_dialog_title_material 0x7f0b000b
-int layout abc_expanded_menu_layout 0x7f0b000c
-int layout abc_list_menu_item_checkbox 0x7f0b000d
-int layout abc_list_menu_item_icon 0x7f0b000e
-int layout abc_list_menu_item_layout 0x7f0b000f
-int layout abc_list_menu_item_radio 0x7f0b0010
-int layout abc_popup_menu_header_item_layout 0x7f0b0011
-int layout abc_popup_menu_item_layout 0x7f0b0012
-int layout abc_screen_content_include 0x7f0b0013
-int layout abc_screen_simple 0x7f0b0014
-int layout abc_screen_simple_overlay_action_mode 0x7f0b0015
-int layout abc_screen_toolbar 0x7f0b0016
-int layout abc_search_dropdown_item_icons_2line 0x7f0b0017
-int layout abc_search_view 0x7f0b0018
-int layout abc_select_dialog_material 0x7f0b0019
-int layout abc_tooltip 0x7f0b001a
-int layout activity_enhance_image 0x7f0b001b
-int layout activity_enhance_image_crop 0x7f0b001c
-int layout activity_first_screen 0x7f0b001d
-int layout activity_imageinfo 0x7f0b001e
-int layout activity_main 0x7f0b001f
-int layout activity_quadrilateral_crop 0x7f0b0020
-int layout activity_snap_results 0x7f0b0021
-int layout design_bottom_navigation_item 0x7f0b0022
-int layout design_bottom_sheet_dialog 0x7f0b0023
-int layout design_layout_snackbar 0x7f0b0024
-int layout design_layout_snackbar_include 0x7f0b0025
-int layout design_layout_tab_icon 0x7f0b0026
-int layout design_layout_tab_text 0x7f0b0027
-int layout design_menu_item_action_area 0x7f0b0028
-int layout design_navigation_item 0x7f0b0029
-int layout design_navigation_item_header 0x7f0b002a
-int layout design_navigation_item_separator 0x7f0b002b
-int layout design_navigation_item_subheader 0x7f0b002c
-int layout design_navigation_menu 0x7f0b002d
-int layout design_navigation_menu_item 0x7f0b002e
-int layout design_text_input_password_icon 0x7f0b002f
-int layout notification_action 0x7f0b0030
-int layout notification_action_tombstone 0x7f0b0031
-int layout notification_media_action 0x7f0b0032
-int layout notification_media_cancel_action 0x7f0b0033
-int layout notification_template_big_media 0x7f0b0034
-int layout notification_template_big_media_custom 0x7f0b0035
-int layout notification_template_big_media_narrow 0x7f0b0036
-int layout notification_template_big_media_narrow_custom 0x7f0b0037
-int layout notification_template_custom_big 0x7f0b0038
-int layout notification_template_icon_group 0x7f0b0039
-int layout notification_template_lines_media 0x7f0b003a
-int layout notification_template_media 0x7f0b003b
-int layout notification_template_media_custom 0x7f0b003c
-int layout notification_template_part_chronometer 0x7f0b003d
-int layout notification_template_part_time 0x7f0b003e
-int layout select_dialog_item_material 0x7f0b003f
-int layout select_dialog_multichoice_material 0x7f0b0040
-int layout select_dialog_singlechoice_material 0x7f0b0041
-int layout support_simple_spinner_dropdown_item 0x7f0b0042
-int menu activity_enhance_image 0x7f0c0000
-int mipmap ic_launcher 0x7f0d0000
-int mipmap ic_launcher_foreground 0x7f0d0001
-int mipmap ic_launcher_round 0x7f0d0002
-int string AppCopyright 0x7f0e0000
-int string Barcode_NotFound 0x7f0e0001
-int string Barcode_Title 0x7f0e0002
-int string Button_Back 0x7f0e0003
-int string Button_Crop 0x7f0e0004
-int string Button_CropSubmit 0x7f0e0005
-int string Button_Undo 0x7f0e0006
-int string Button_UndoAll 0x7f0e0007
-int string EnhanceImageCrop_Title 0x7f0e0008
-int string EnhanceImageQuadCrop_Title 0x7f0e0009
-int string EnhanceImage_Title 0x7f0e000a
-int string GPREF_APPLICATIONID 0x7f0e000b
-int string GPREF_APPLICATIONID_SUMMARY 0x7f0e000c
-int string GPREF_APPLICATIONID_TITLE 0x7f0e000d
-int string GPREF_APPLICATION_SETTINGS_KEY 0x7f0e000e
-int string GPREF_APPLICATION_SETTINGS_TITLE 0x7f0e000f
-int string GPREF_AUTOCAPTURE 0x7f0e0010
-int string GPREF_AUTOCAPTURE_SUMMARY 0x7f0e0011
-int string GPREF_AUTOCAPTURE_TITLE 0x7f0e0012
-int string GPREF_BARCODE_COUNT 0x7f0e0013
-int string GPREF_BARCODE_COUNT_DEFAULT 0x7f0e0014
-int string GPREF_BARCODE_COUNT_SUMMARY 0x7f0e0015
-int string GPREF_BARCODE_COUNT_TITLE 0x7f0e0016
-int string GPREF_BARCODE_GROUP_TITLE 0x7f0e0017
-int string GPREF_BARCODE_TYPE 0x7f0e0018
-int string GPREF_BARCODE_TYPE_SUMMARY 0x7f0e0019
-int string GPREF_BARCODE_TYPE_TITLE 0x7f0e001a
-int string GPREF_CANCEL 0x7f0e001b
-int string GPREF_CANCEL_SUMMARY 0x7f0e001c
-int string GPREF_CANCEL_TITLE 0x7f0e001d
-int string GPREF_CAPTURECOUNT 0x7f0e001e
-int string GPREF_CAPTURECOUNT_SUMMARY 0x7f0e001f
-int string GPREF_CAPTURECOUNT_TITLE 0x7f0e0020
-int string GPREF_CAPTUREDELAY 0x7f0e0021
-int string GPREF_CAPTUREDELAY_SUMMARY 0x7f0e0022
-int string GPREF_CAPTUREDELAY_TITLE 0x7f0e0023
-int string GPREF_CAPTURESIMILARITY 0x7f0e0024
-int string GPREF_CAPTURESIMILARITY_SUMMARY 0x7f0e0025
-int string GPREF_CAPTURESIMILARITY_TITLE 0x7f0e0026
-int string GPREF_CAPTURETIMEOUT 0x7f0e0027
-int string GPREF_CAPTURETIMEOUT_SUMMARY 0x7f0e0028
-int string GPREF_CAPTURETIMEOUT_TITLE 0x7f0e0029
-int string GPREF_CAPTURE_CUSTOM 0x7f0e002a
-int string GPREF_CAPTURE_CUSTOM_OPTIONS 0x7f0e002b
-int string GPREF_CAPTURE_CUSTOM_OPTIONS_EXTEND 0x7f0e002c
-int string GPREF_CAPTURE_CUSTOM_OPTIONS_NONE 0x7f0e002d
-int string GPREF_CAPTURE_CUSTOM_OPTIONS_REPLACE 0x7f0e002e
-int string GPREF_CAPTURE_CUSTOM_OPTIONS_TITLE 0x7f0e002f
-int string GPREF_CAPTURE_CUSTOM_TITLE 0x7f0e0030
-int string GPREF_CAPTURE_GROUP 0x7f0e0031
-int string GPREF_CAPTURE_GROUP_TITLE 0x7f0e0032
-int string GPREF_CAPTURINGLABEL 0x7f0e0033
-int string GPREF_CAPTURINGLABEL_SUMMARY 0x7f0e0034
-int string GPREF_CAPTURINGLABEL_TITLE 0x7f0e0035
-int string GPREF_CENTERLABEL 0x7f0e0036
-int string GPREF_CENTERLABEL_SUMMARY 0x7f0e0037
-int string GPREF_CENTERLABEL_TITLE 0x7f0e0038
-int string GPREF_CONTINUOUSCAPTUREFRAMEDELAY 0x7f0e0039
-int string GPREF_CONTINUOUSCAPTUREFRAMEDELAY_SUMMARY 0x7f0e003a
-int string GPREF_CONTINUOUSCAPTUREFRAMEDELAY_TITLE 0x7f0e003b
-int string GPREF_DPIX 0x7f0e003c
-int string GPREF_DPIX_SUMMARY 0x7f0e003d
-int string GPREF_DPIX_TITLE 0x7f0e003e
-int string GPREF_DPIY 0x7f0e003f
-int string GPREF_DPIY_SUMMARY 0x7f0e0040
-int string GPREF_DPIY_TITLE 0x7f0e0041
-int string GPREF_EDGELABEL 0x7f0e0042
-int string GPREF_EDGELABEL_SUMMARY 0x7f0e0043
-int string GPREF_EDGELABEL_TITLE 0x7f0e0044
-int string GPREF_FILTER_ADAPTIVE_BINARY_BLACKNESS 0x7f0e0045
-int string GPREF_FILTER_ADAPTIVE_BINARY_BLACKNESS_SUMMARY 0x7f0e0046
-int string GPREF_FILTER_ADAPTIVE_BINARY_BLACKNESS_TITLE 0x7f0e0047
-int string GPREF_FILTER_ADAPTIVE_BINARY_FORCE 0x7f0e0048
-int string GPREF_FILTER_ADAPTIVE_BINARY_FORCE_SUMMARY 0x7f0e0049
-int string GPREF_FILTER_ADAPTIVE_BINARY_FORCE_TITLE 0x7f0e004a
-int string GPREF_FILTER_CROP_PADDING 0x7f0e004b
-int string GPREF_FILTER_CROP_PADDING_SUMMARY 0x7f0e004c
-int string GPREF_FILTER_CROP_PADDING_TITLE 0x7f0e004d
-int string GPREF_FILTER_ENABLE_UNDO 0x7f0e004e
-int string GPREF_FILTER_ENABLE_UNDO_SUMMARY 0x7f0e004f
-int string GPREF_FILTER_ENABLE_UNDO_TITLE 0x7f0e0050
-int string GPREF_FILTER_REMOVE_NOISE 0x7f0e0051
-int string GPREF_FILTER_REMOVE_NOISE_SUMMARY 0x7f0e0052
-int string GPREF_FILTER_REMOVE_NOISE_TITLE 0x7f0e0053
-int string GPREF_FILTER_SETTINGS_KEY 0x7f0e0054
-int string GPREF_FILTER_SETTINGS_TITLE 0x7f0e0055
-int string GPREF_GUIDELINES 0x7f0e0056
-int string GPREF_GUIDELINES_SUMMARY 0x7f0e0057
-int string GPREF_GUIDELINES_TITLE 0x7f0e0058
-int string GPREF_IMAGEFORMAT 0x7f0e0059
-int string GPREF_IMAGEFORMAT_SUMMARY 0x7f0e005a
-int string GPREF_IMAGEFORMAT_TITLE 0x7f0e005b
-int string GPREF_JPGQUALITY 0x7f0e005c
-int string GPREF_JPGQUALITY_SUMMARY 0x7f0e005d
-int string GPREF_JPGQUALITY_TITLE 0x7f0e005e
-int string GPREF_LICENSE 0x7f0e005f
-int string GPREF_LICENSE_SUMMARY 0x7f0e0060
-int string GPREF_LICENSE_TITLE 0x7f0e0061
-int string GPREF_OPTIMALCONDREQ 0x7f0e0062
-int string GPREF_OPTIMALCONDREQ_SUMMARY 0x7f0e0063
-int string GPREF_OPTIMALCONDREQ_TITLE 0x7f0e0064
-int string GPREF_PICTURE_CROP 0x7f0e0065
-int string GPREF_PICTURE_CROP_ASPECT_HEIGHT 0x7f0e0066
-int string GPREF_PICTURE_CROP_ASPECT_HEIGHT_SUMMARY 0x7f0e0067
-int string GPREF_PICTURE_CROP_ASPECT_HEIGHT_TITLE 0x7f0e0068
-int string GPREF_PICTURE_CROP_ASPECT_WIDTH 0x7f0e0069
-int string GPREF_PICTURE_CROP_ASPECT_WIDTH_SUMMARY 0x7f0e006a
-int string GPREF_PICTURE_CROP_ASPECT_WIDTH_TITLE 0x7f0e006b
-int string GPREF_PICTURE_CROP_COLOR 0x7f0e006c
-int string GPREF_PICTURE_CROP_COLOR_SUMMARY 0x7f0e006d
-int string GPREF_PICTURE_CROP_COLOR_TITLE 0x7f0e006e
-int string GPREF_PICTURE_CROP_SUMMARY 0x7f0e006f
-int string GPREF_PICTURE_CROP_TITLE 0x7f0e0070
-int string GPREF_PICTURE_CROP_WARNING_COLOR 0x7f0e0071
-int string GPREF_PICTURE_CROP_WARNING_COLOR_SUMMARY 0x7f0e0072
-int string GPREF_PICTURE_CROP_WARNING_COLOR_TITLE 0x7f0e0073
-int string GPREF_QUAD_CROP_CIRCLE_RADIUS 0x7f0e0074
-int string GPREF_QUAD_CROP_CIRCLE_RADIUS_SUMMARY 0x7f0e0075
-int string GPREF_QUAD_CROP_CIRCLE_RADIUS_TITLE 0x7f0e0076
-int string GPREF_QUAD_CROP_COLOR 0x7f0e0077
-int string GPREF_QUAD_CROP_COLOR_SUMMARY 0x7f0e0078
-int string GPREF_QUAD_CROP_COLOR_TITLE 0x7f0e0079
-int string GPREF_QUAD_CROP_LINE_WIDTH 0x7f0e007a
-int string GPREF_QUAD_CROP_LINE_WIDTH_SUMMARY 0x7f0e007b
-int string GPREF_QUAD_CROP_LINE_WIDTH_TITLE 0x7f0e007c
-int string GPREF_QUAD_CROP_SHADE_BACKGROUND 0x7f0e007d
-int string GPREF_QUAD_CROP_SHADE_BACKGROUND_SUMMARY 0x7f0e007e
-int string GPREF_QUAD_CROP_SHADE_BACKGROUND_TITLE 0x7f0e007f
-int string GPREF_SENSOR_FOCUS 0x7f0e0080
-int string GPREF_SENSOR_FOCUS_SUMMARY 0x7f0e0081
-int string GPREF_SENSOR_FOCUS_TITLE 0x7f0e0082
-int string GPREF_SENSOR_LIGHT 0x7f0e0083
-int string GPREF_SENSOR_LIGHT_SUMMARY 0x7f0e0084
-int string GPREF_SENSOR_LIGHT_TITLE 0x7f0e0085
-int string GPREF_SENSOR_LIGHT_VALUE 0x7f0e0086
-int string GPREF_SENSOR_LIGHT_VALUE_SUMMARY 0x7f0e0087
-int string GPREF_SENSOR_LIGHT_VALUE_TITLE 0x7f0e0088
-int string GPREF_SENSOR_MOTION 0x7f0e0089
-int string GPREF_SENSOR_MOTION_SUMMARY 0x7f0e008a
-int string GPREF_SENSOR_MOTION_TITLE 0x7f0e008b
-int string GPREF_SENSOR_MOTION_VALUE 0x7f0e008c
-int string GPREF_SENSOR_MOTION_VALUE_SUMMARY 0x7f0e008d
-int string GPREF_SENSOR_MOTION_VALUE_TITLE 0x7f0e008e
-int string GPREF_SENSOR_QUALITY 0x7f0e008f
-int string GPREF_SENSOR_QUALITY_GLARE_SUMMARY 0x7f0e0090
-int string GPREF_SENSOR_QUALITY_GLARE_TITLE 0x7f0e0091
-int string GPREF_SENSOR_QUALITY_GLARE_VALUE 0x7f0e0092
-int string GPREF_SENSOR_QUALITY_PERSPECTIVE_SUMMARY 0x7f0e0093
-int string GPREF_SENSOR_QUALITY_PERSPECTIVE_TITLE 0x7f0e0094
-int string GPREF_SENSOR_QUALITY_PERSPECTIVE_VALUE 0x7f0e0095
-int string GPREF_SENSOR_QUALITY_QUADRILATERAL_SUMMARY 0x7f0e0096
-int string GPREF_SENSOR_QUALITY_QUADRILATERAL_TITLE 0x7f0e0097
-int string GPREF_SENSOR_QUALITY_QUADRILATERAL_VALUE 0x7f0e0098
-int string GPREF_SENSOR_QUALITY_SUMMARY 0x7f0e0099
-int string GPREF_SENSOR_QUALITY_TITLE 0x7f0e009a
-int string GPREF_TORCH 0x7f0e009b
-int string GPREF_TORCH_BUTTON 0x7f0e009c
-int string GPREF_TORCH_BUTTON_SUMMARY 0x7f0e009d
-int string GPREF_TORCH_BUTTON_TITLE 0x7f0e009e
-int string GPREF_TORCH_SUMMARY 0x7f0e009f
-int string GPREF_TORCH_TITLE 0x7f0e00a0
-int string General_Done 0x7f0e00a1
-int string General_Image 0x7f0e00a2
-int string General_Menu 0x7f0e00a3
-int string General_NavNext 0x7f0e00a4
-int string General_NavPrev 0x7f0e00a5
-int string General_Update 0x7f0e00a6
-int string ImageInfo_BitsPerPixel 0x7f0e00a7
-int string ImageInfo_Channels 0x7f0e00a8
-int string ImageInfo_DeviceID 0x7f0e00a9
-int string ImageInfo_Glare 0x7f0e00aa
-int string ImageInfo_Height 0x7f0e00ab
-int string ImageInfo_LastError 0x7f0e00ac
-int string ImageInfo_Perspective 0x7f0e00ad
-int string ImageInfo_Quadrilateral 0x7f0e00ae
-int string ImageInfo_Title 0x7f0e00af
-int string ImageInfo_TotalQuality 0x7f0e00b0
-int string ImageInfo_Version 0x7f0e00b1
-int string ImageInfo_Width 0x7f0e00b2
-int string MainPage_EnhanceImage 0x7f0e00b3
-int string MainPage_Settings 0x7f0e00b4
-int string MainPage_TakeContinuousPictures 0x7f0e00b5
-int string MainPage_TakePicture 0x7f0e00b6
-int string MainPage_Title 0x7f0e00b7
-int string Menu_AutoCrop 0x7f0e00b8
-int string Menu_BlackWhite 0x7f0e00b9
-int string Menu_Crop 0x7f0e00ba
-int string Menu_Darker 0x7f0e00bb
-int string Menu_DecreaseContrast 0x7f0e00bc
-int string Menu_Delete 0x7f0e00bd
-int string Menu_Deskew 0x7f0e00be
-int string Menu_DetectBarcodes 0x7f0e00bf
-int string Menu_GetInfo 0x7f0e00c0
-int string Menu_Gray 0x7f0e00c1
-int string Menu_ImageLabel 0x7f0e00c2
-int string Menu_IncreaseContrast 0x7f0e00c3
-int string Menu_Lighter 0x7f0e00c4
-int string Menu_QuadCrop 0x7f0e00c5
-int string Menu_RemoveNoise 0x7f0e00c6
-int string Menu_Resize 0x7f0e00c7
-int string Menu_Rotate180 0x7f0e00c8
-int string Menu_RotateLeft 0x7f0e00c9
-int string Menu_RotateRight 0x7f0e00ca
-int string SNAP_CAPTURE_PROFILE 0x7f0e00cb
-int string SNAP_CAPTURE_PROFILE_SUMMARY 0x7f0e00cc
-int string SNAP_CAPTURE_PROFILE_TITLE 0x7f0e00cd
-int string SNAP_CLIENT 0x7f0e00ce
-int string SNAP_CLIENT_SUMMARY 0x7f0e00cf
-int string SNAP_CLIENT_TITLE 0x7f0e00d0
-int string SNAP_PASSWORD 0x7f0e00d1
-int string SNAP_PASSWORD_SUMMARY 0x7f0e00d2
-int string SNAP_PASSWORD_TITLE 0x7f0e00d3
-int string SNAP_RECOGNITION_PROJECT 0x7f0e00d4
-int string SNAP_RECOGNITION_PROJECT_SUMMARY 0x7f0e00d5
-int string SNAP_RECOGNITION_PROJECT_TITLE 0x7f0e00d6
-int string SNAP_SECRET 0x7f0e00d7
-int string SNAP_SECRET_SUMMARY 0x7f0e00d8
-int string SNAP_SECRET_TITLE 0x7f0e00d9
-int string SNAP_SUBSCRIPTION 0x7f0e00da
-int string SNAP_SUBSCRIPTION_SUMMARY 0x7f0e00db
-int string SNAP_SUBSCRIPTION_TITLE 0x7f0e00dc
-int string SNAP_URL 0x7f0e00dd
-int string SNAP_URL_SUMMARY 0x7f0e00de
-int string SNAP_URL_TITLE 0x7f0e00df
-int string SNAP_USER 0x7f0e00e0
-int string SNAP_USER_SUMMARY 0x7f0e00e1
-int string SNAP_USER_TITLE 0x7f0e00e2
-int string Undo_Error_Disabled 0x7f0e00e3
-int string Undo_Error_Empty 0x7f0e00e4
-int string Undo_Error_Generic 0x7f0e00e5
-int string abc_action_bar_home_description 0x7f0e00e6
-int string abc_action_bar_up_description 0x7f0e00e7
-int string abc_action_menu_overflow_description 0x7f0e00e8
-int string abc_action_mode_done 0x7f0e00e9
-int string abc_activity_chooser_view_see_all 0x7f0e00ea
-int string abc_activitychooserview_choose_application 0x7f0e00eb
-int string abc_capital_off 0x7f0e00ec
-int string abc_capital_on 0x7f0e00ed
-int string abc_font_family_body_1_material 0x7f0e00ee
-int string abc_font_family_body_2_material 0x7f0e00ef
-int string abc_font_family_button_material 0x7f0e00f0
-int string abc_font_family_caption_material 0x7f0e00f1
-int string abc_font_family_display_1_material 0x7f0e00f2
-int string abc_font_family_display_2_material 0x7f0e00f3
-int string abc_font_family_display_3_material 0x7f0e00f4
-int string abc_font_family_display_4_material 0x7f0e00f5
-int string abc_font_family_headline_material 0x7f0e00f6
-int string abc_font_family_menu_material 0x7f0e00f7
-int string abc_font_family_subhead_material 0x7f0e00f8
-int string abc_font_family_title_material 0x7f0e00f9
-int string abc_search_hint 0x7f0e00fa
-int string abc_searchview_description_clear 0x7f0e00fb
-int string abc_searchview_description_query 0x7f0e00fc
-int string abc_searchview_description_search 0x7f0e00fd
-int string abc_searchview_description_submit 0x7f0e00fe
-int string abc_searchview_description_voice 0x7f0e00ff
-int string abc_shareactionprovider_share_with 0x7f0e0100
-int string abc_shareactionprovider_share_with_application 0x7f0e0101
-int string abc_toolbar_collapse_description 0x7f0e0102
-int string app_name 0x7f0e0103
-int string appbar_scrolling_view_behavior 0x7f0e0104
-int string applicationId 0x7f0e0105
-int string bottom_sheet_behavior 0x7f0e0106
-int string character_counter_pattern 0x7f0e0107
-int string dummy_button 0x7f0e0108
-int string dummy_content 0x7f0e0109
-int string large_text 0x7f0e010a
-int string licenseKey 0x7f0e010b
-int string password_toggle_content_description 0x7f0e010c
-int string path_password_eye 0x7f0e010d
-int string path_password_eye_mask_strike_through 0x7f0e010e
-int string path_password_eye_mask_visible 0x7f0e010f
-int string path_password_strike_through 0x7f0e0110
-int string search_menu_title 0x7f0e0111
-int string snap_IA_catpureflow 0x7f0e0112
-int string snap_IA_catpureflow_summary 0x7f0e0113
-int string snap_IA_server 0x7f0e0114
-int string snap_IA_server_summary 0x7f0e0115
-int string snap_dc 0x7f0e0116
-int string snap_environment 0x7f0e0117
-int string snap_environment_summary 0x7f0e0118
-int string snap_export_name 0x7f0e0119
-int string snap_export_name_summary 0x7f0e011a
-int string snap_export_type 0x7f0e011b
-int string snap_export_type_summary 0x7f0e011c
-int string snap_profiles 0x7f0e011d
-int string snap_settings 0x7f0e011e
-int string status_bar_notification_info_overflow 0x7f0e011f
-int string title_activity_first_screen 0x7f0e0120
-int string title_activity_fullscreen 0x7f0e0121
-int string title_activity_snap_results 0x7f0e0122
-int style AlertDialog_AppCompat 0x7f0f0000
-int style AlertDialog_AppCompat_Light 0x7f0f0001
-int style Animation_AppCompat_Dialog 0x7f0f0002
-int style Animation_AppCompat_DropDownUp 0x7f0f0003
-int style Animation_AppCompat_Tooltip 0x7f0f0004
-int style Animation_Design_BottomSheetDialog 0x7f0f0005
-int style AppBaseTheme 0x7f0f0006
-int style AppTheme 0x7f0f0007
-int style Base_AlertDialog_AppCompat 0x7f0f0008
-int style Base_AlertDialog_AppCompat_Light 0x7f0f0009
-int style Base_Animation_AppCompat_Dialog 0x7f0f000a
-int style Base_Animation_AppCompat_DropDownUp 0x7f0f000b
-int style Base_Animation_AppCompat_Tooltip 0x7f0f000c
-int style Base_DialogWindowTitle_AppCompat 0x7f0f000d
-int style Base_DialogWindowTitleBackground_AppCompat 0x7f0f000e
-int style Base_TextAppearance_AppCompat 0x7f0f000f
-int style Base_TextAppearance_AppCompat_Body1 0x7f0f0010
-int style Base_TextAppearance_AppCompat_Body2 0x7f0f0011
-int style Base_TextAppearance_AppCompat_Button 0x7f0f0012
-int style Base_TextAppearance_AppCompat_Caption 0x7f0f0013
-int style Base_TextAppearance_AppCompat_Display1 0x7f0f0014
-int style Base_TextAppearance_AppCompat_Display2 0x7f0f0015
-int style Base_TextAppearance_AppCompat_Display3 0x7f0f0016
-int style Base_TextAppearance_AppCompat_Display4 0x7f0f0017
-int style Base_TextAppearance_AppCompat_Headline 0x7f0f0018
-int style Base_TextAppearance_AppCompat_Inverse 0x7f0f0019
-int style Base_TextAppearance_AppCompat_Large 0x7f0f001a
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0f001b
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f001c
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f001d
-int style Base_TextAppearance_AppCompat_Medium 0x7f0f001e
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0f001f
-int style Base_TextAppearance_AppCompat_Menu 0x7f0f0020
-int style Base_TextAppearance_AppCompat_SearchResult 0x7f0f0021
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f0022
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0f0023
-int style Base_TextAppearance_AppCompat_Small 0x7f0f0024
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0f0025
-int style Base_TextAppearance_AppCompat_Subhead 0x7f0f0026
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0f0027
-int style Base_TextAppearance_AppCompat_Title 0x7f0f0028
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0f0029
-int style Base_TextAppearance_AppCompat_Tooltip 0x7f0f002a
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f002b
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f002c
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f002d
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f002e
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f002f
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f0030
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f0031
-int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0f0032
-int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f0033
-int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f0034
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f0035
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f0036
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f0037
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0038
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0039
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0f003a
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f003b
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f003c
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f003d
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f003e
-int style Base_Theme_AppCompat 0x7f0f003f
-int style Base_Theme_AppCompat_CompactMenu 0x7f0f0040
-int style Base_Theme_AppCompat_Dialog 0x7f0f0041
-int style Base_Theme_AppCompat_Dialog_Alert 0x7f0f0042
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0f0043
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0f0044
-int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0f0045
-int style Base_Theme_AppCompat_Light 0x7f0f0046
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0f0047
-int style Base_Theme_AppCompat_Light_Dialog 0x7f0f0048
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0f0049
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0f004a
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f004b
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0f004c
-int style Base_ThemeOverlay_AppCompat 0x7f0f004d
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0f004e
-int style Base_ThemeOverlay_AppCompat_Dark 0x7f0f004f
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f0050
-int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0f0051
-int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0052
-int style Base_ThemeOverlay_AppCompat_Light 0x7f0f0053
-int style Base_V14_Widget_Design_AppBarLayout 0x7f0f0054
-int style Base_V21_Theme_AppCompat 0x7f0f0055
-int style Base_V21_Theme_AppCompat_Dialog 0x7f0f0056
-int style Base_V21_Theme_AppCompat_Light 0x7f0f0057
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0f0058
-int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0f0059
-int style Base_V21_Widget_Design_AppBarLayout 0x7f0f005a
-int style Base_V22_Theme_AppCompat 0x7f0f005b
-int style Base_V22_Theme_AppCompat_Light 0x7f0f005c
-int style Base_V23_Theme_AppCompat 0x7f0f005d
-int style Base_V23_Theme_AppCompat_Light 0x7f0f005e
-int style Base_V26_Theme_AppCompat 0x7f0f005f
-int style Base_V26_Theme_AppCompat_Light 0x7f0f0060
-int style Base_V26_Widget_AppCompat_Toolbar 0x7f0f0061
-int style Base_V26_Widget_Design_AppBarLayout 0x7f0f0062
-int style Base_V7_Theme_AppCompat 0x7f0f0063
-int style Base_V7_Theme_AppCompat_Dialog 0x7f0f0064
-int style Base_V7_Theme_AppCompat_Light 0x7f0f0065
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0f0066
-int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0f0067
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0f0068
-int style Base_V7_Widget_AppCompat_EditText 0x7f0f0069
-int style Base_V7_Widget_AppCompat_Toolbar 0x7f0f006a
-int style Base_Widget_AppCompat_ActionBar 0x7f0f006b
-int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0f006c
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0f006d
-int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0f006e
-int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0f006f
-int style Base_Widget_AppCompat_ActionButton 0x7f0f0070
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0f0071
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0f0072
-int style Base_Widget_AppCompat_ActionMode 0x7f0f0073
-int style Base_Widget_AppCompat_ActivityChooserView 0x7f0f0074
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0f0075
-int style Base_Widget_AppCompat_Button 0x7f0f0076
-int style Base_Widget_AppCompat_Button_Borderless 0x7f0f0077
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0f0078
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0079
-int style Base_Widget_AppCompat_Button_Colored 0x7f0f007a
-int style Base_Widget_AppCompat_Button_Small 0x7f0f007b
-int style Base_Widget_AppCompat_ButtonBar 0x7f0f007c
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f007d
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0f007e
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0f007f
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0f0080
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0f0081
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0f0082
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0f0083
-int style Base_Widget_AppCompat_EditText 0x7f0f0084
-int style Base_Widget_AppCompat_ImageButton 0x7f0f0085
-int style Base_Widget_AppCompat_Light_ActionBar 0x7f0f0086
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0f0087
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f0088
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0f0089
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f008a
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0f008b
-int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0f008c
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f008d
-int style Base_Widget_AppCompat_ListMenuView 0x7f0f008e
-int style Base_Widget_AppCompat_ListPopupWindow 0x7f0f008f
-int style Base_Widget_AppCompat_ListView 0x7f0f0090
-int style Base_Widget_AppCompat_ListView_DropDown 0x7f0f0091
-int style Base_Widget_AppCompat_ListView_Menu 0x7f0f0092
-int style Base_Widget_AppCompat_PopupMenu 0x7f0f0093
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0f0094
-int style Base_Widget_AppCompat_PopupWindow 0x7f0f0095
-int style Base_Widget_AppCompat_ProgressBar 0x7f0f0096
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0f0097
-int style Base_Widget_AppCompat_RatingBar 0x7f0f0098
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0f0099
-int style Base_Widget_AppCompat_RatingBar_Small 0x7f0f009a
-int style Base_Widget_AppCompat_SearchView 0x7f0f009b
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0f009c
-int style Base_Widget_AppCompat_SeekBar 0x7f0f009d
-int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0f009e
-int style Base_Widget_AppCompat_Spinner 0x7f0f009f
-int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0f00a0
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0f00a1
-int style Base_Widget_AppCompat_Toolbar 0x7f0f00a2
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f00a3
-int style Base_Widget_Design_AppBarLayout 0x7f0f00a4
-int style Base_Widget_Design_TabLayout 0x7f0f00a5
-int style FullscreenActionBarStyle 0x7f0f00a6
-int style FullscreenTheme 0x7f0f00a7
-int style Platform_AppCompat 0x7f0f00a8
-int style Platform_AppCompat_Light 0x7f0f00a9
-int style Platform_ThemeOverlay_AppCompat 0x7f0f00aa
-int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0f00ab
-int style Platform_ThemeOverlay_AppCompat_Light 0x7f0f00ac
-int style Platform_V21_AppCompat 0x7f0f00ad
-int style Platform_V21_AppCompat_Light 0x7f0f00ae
-int style Platform_V25_AppCompat 0x7f0f00af
-int style Platform_V25_AppCompat_Light 0x7f0f00b0
-int style Platform_Widget_AppCompat_Spinner 0x7f0f00b1
-int style PreferencesTheme 0x7f0f00b2
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0f00b3
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0f00b4
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0f00b5
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0f00b6
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0f00b7
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0f00b8
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0f00b9
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0f00ba
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0f00bb
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0f00bc
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0f00bd
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0f00be
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0f00bf
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0f00c0
-int style TextAppearance_AppCompat 0x7f0f00c1
-int style TextAppearance_AppCompat_Body1 0x7f0f00c2
-int style TextAppearance_AppCompat_Body2 0x7f0f00c3
-int style TextAppearance_AppCompat_Button 0x7f0f00c4
-int style TextAppearance_AppCompat_Caption 0x7f0f00c5
-int style TextAppearance_AppCompat_Display1 0x7f0f00c6
-int style TextAppearance_AppCompat_Display2 0x7f0f00c7
-int style TextAppearance_AppCompat_Display3 0x7f0f00c8
-int style TextAppearance_AppCompat_Display4 0x7f0f00c9
-int style TextAppearance_AppCompat_Headline 0x7f0f00ca
-int style TextAppearance_AppCompat_Inverse 0x7f0f00cb
-int style TextAppearance_AppCompat_Large 0x7f0f00cc
-int style TextAppearance_AppCompat_Large_Inverse 0x7f0f00cd
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0f00ce
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0f00cf
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f00d0
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f00d1
-int style TextAppearance_AppCompat_Medium 0x7f0f00d2
-int style TextAppearance_AppCompat_Medium_Inverse 0x7f0f00d3
-int style TextAppearance_AppCompat_Menu 0x7f0f00d4
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f00d5
-int style TextAppearance_AppCompat_SearchResult_Title 0x7f0f00d6
-int style TextAppearance_AppCompat_Small 0x7f0f00d7
-int style TextAppearance_AppCompat_Small_Inverse 0x7f0f00d8
-int style TextAppearance_AppCompat_Subhead 0x7f0f00d9
-int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0f00da
-int style TextAppearance_AppCompat_Title 0x7f0f00db
-int style TextAppearance_AppCompat_Title_Inverse 0x7f0f00dc
-int style TextAppearance_AppCompat_Tooltip 0x7f0f00dd
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f00de
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f00df
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f00e0
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f00e1
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f00e2
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f00e3
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0f00e4
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f00e5
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0f00e6
-int style TextAppearance_AppCompat_Widget_Button 0x7f0f00e7
-int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f00e8
-int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f00e9
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f00ea
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f00eb
-int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f00ec
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f00ed
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f00ee
-int style TextAppearance_AppCompat_Widget_Switch 0x7f0f00ef
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f00f0
-int style TextAppearance_Compat_Notification 0x7f0f00f1
-int style TextAppearance_Compat_Notification_Info 0x7f0f00f2
-int style TextAppearance_Compat_Notification_Info_Media 0x7f0f00f3
-int style TextAppearance_Compat_Notification_Line2 0x7f0f00f4
-int style TextAppearance_Compat_Notification_Line2_Media 0x7f0f00f5
-int style TextAppearance_Compat_Notification_Media 0x7f0f00f6
-int style TextAppearance_Compat_Notification_Time 0x7f0f00f7
-int style TextAppearance_Compat_Notification_Time_Media 0x7f0f00f8
-int style TextAppearance_Compat_Notification_Title 0x7f0f00f9
-int style TextAppearance_Compat_Notification_Title_Media 0x7f0f00fa
-int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0f00fb
-int style TextAppearance_Design_Counter 0x7f0f00fc
-int style TextAppearance_Design_Counter_Overflow 0x7f0f00fd
-int style TextAppearance_Design_Error 0x7f0f00fe
-int style TextAppearance_Design_Hint 0x7f0f00ff
-int style TextAppearance_Design_Snackbar_Message 0x7f0f0100
-int style TextAppearance_Design_Tab 0x7f0f0101
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f0102
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f0103
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f0104
-int style Theme_AppCompat 0x7f0f0105
-int style Theme_AppCompat_CompactMenu 0x7f0f0106
-int style Theme_AppCompat_DayNight 0x7f0f0107
-int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0f0108
-int style Theme_AppCompat_DayNight_Dialog 0x7f0f0109
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0f010a
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0f010b
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0f010c
-int style Theme_AppCompat_DayNight_NoActionBar 0x7f0f010d
-int style Theme_AppCompat_Dialog 0x7f0f010e
-int style Theme_AppCompat_Dialog_Alert 0x7f0f010f
-int style Theme_AppCompat_Dialog_MinWidth 0x7f0f0110
-int style Theme_AppCompat_DialogWhenLarge 0x7f0f0111
-int style Theme_AppCompat_Light 0x7f0f0112
-int style Theme_AppCompat_Light_DarkActionBar 0x7f0f0113
-int style Theme_AppCompat_Light_Dialog 0x7f0f0114
-int style Theme_AppCompat_Light_Dialog_Alert 0x7f0f0115
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f0116
-int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0f0117
-int style Theme_AppCompat_Light_NoActionBar 0x7f0f0118
-int style Theme_AppCompat_NoActionBar 0x7f0f0119
-int style Theme_Design 0x7f0f011a
-int style Theme_Design_BottomSheetDialog 0x7f0f011b
-int style Theme_Design_Light 0x7f0f011c
-int style Theme_Design_Light_BottomSheetDialog 0x7f0f011d
-int style Theme_Design_Light_NoActionBar 0x7f0f011e
-int style Theme_Design_NoActionBar 0x7f0f011f
-int style ThemeOverlay_AppCompat 0x7f0f0120
-int style ThemeOverlay_AppCompat_ActionBar 0x7f0f0121
-int style ThemeOverlay_AppCompat_Dark 0x7f0f0122
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f0123
-int style ThemeOverlay_AppCompat_Dialog 0x7f0f0124
-int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0125
-int style ThemeOverlay_AppCompat_Light 0x7f0f0126
-int style Widget_AppCompat_ActionBar 0x7f0f0127
-int style Widget_AppCompat_ActionBar_Solid 0x7f0f0128
-int style Widget_AppCompat_ActionBar_TabBar 0x7f0f0129
-int style Widget_AppCompat_ActionBar_TabText 0x7f0f012a
-int style Widget_AppCompat_ActionBar_TabView 0x7f0f012b
-int style Widget_AppCompat_ActionButton 0x7f0f012c
-int style Widget_AppCompat_ActionButton_CloseMode 0x7f0f012d
-int style Widget_AppCompat_ActionButton_Overflow 0x7f0f012e
-int style Widget_AppCompat_ActionMode 0x7f0f012f
-int style Widget_AppCompat_ActivityChooserView 0x7f0f0130
-int style Widget_AppCompat_AutoCompleteTextView 0x7f0f0131
-int style Widget_AppCompat_Button 0x7f0f0132
-int style Widget_AppCompat_Button_Borderless 0x7f0f0133
-int style Widget_AppCompat_Button_Borderless_Colored 0x7f0f0134
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0135
-int style Widget_AppCompat_Button_Colored 0x7f0f0136
-int style Widget_AppCompat_Button_Small 0x7f0f0137
-int style Widget_AppCompat_ButtonBar 0x7f0f0138
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f0139
-int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0f013a
-int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0f013b
-int style Widget_AppCompat_CompoundButton_Switch 0x7f0f013c
-int style Widget_AppCompat_DrawerArrowToggle 0x7f0f013d
-int style Widget_AppCompat_DropDownItem_Spinner 0x7f0f013e
-int style Widget_AppCompat_EditText 0x7f0f013f
-int style Widget_AppCompat_ImageButton 0x7f0f0140
-int style Widget_AppCompat_Light_ActionBar 0x7f0f0141
-int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0f0142
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0f0143
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f0144
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0f0145
-int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0f0146
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f0147
-int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0f0148
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0f0149
-int style Widget_AppCompat_Light_ActionButton 0x7f0f014a
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0f014b
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0f014c
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0f014d
-int style Widget_AppCompat_Light_ActivityChooserView 0x7f0f014e
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0f014f
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0f0150
-int style Widget_AppCompat_Light_ListPopupWindow 0x7f0f0151
-int style Widget_AppCompat_Light_ListView_DropDown 0x7f0f0152
-int style Widget_AppCompat_Light_PopupMenu 0x7f0f0153
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f0154
-int style Widget_AppCompat_Light_SearchView 0x7f0f0155
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0f0156
-int style Widget_AppCompat_ListMenuView 0x7f0f0157
-int style Widget_AppCompat_ListPopupWindow 0x7f0f0158
-int style Widget_AppCompat_ListView 0x7f0f0159
-int style Widget_AppCompat_ListView_DropDown 0x7f0f015a
-int style Widget_AppCompat_ListView_Menu 0x7f0f015b
-int style Widget_AppCompat_PopupMenu 0x7f0f015c
-int style Widget_AppCompat_PopupMenu_Overflow 0x7f0f015d
-int style Widget_AppCompat_PopupWindow 0x7f0f015e
-int style Widget_AppCompat_ProgressBar 0x7f0f015f
-int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0f0160
-int style Widget_AppCompat_RatingBar 0x7f0f0161
-int style Widget_AppCompat_RatingBar_Indicator 0x7f0f0162
-int style Widget_AppCompat_RatingBar_Small 0x7f0f0163
-int style Widget_AppCompat_SearchView 0x7f0f0164
-int style Widget_AppCompat_SearchView_ActionBar 0x7f0f0165
-int style Widget_AppCompat_SeekBar 0x7f0f0166
-int style Widget_AppCompat_SeekBar_Discrete 0x7f0f0167
-int style Widget_AppCompat_Spinner 0x7f0f0168
-int style Widget_AppCompat_Spinner_DropDown 0x7f0f0169
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0f016a
-int style Widget_AppCompat_Spinner_Underlined 0x7f0f016b
-int style Widget_AppCompat_TextView_SpinnerItem 0x7f0f016c
-int style Widget_AppCompat_Toolbar 0x7f0f016d
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f016e
-int style Widget_Compat_NotificationActionContainer 0x7f0f016f
-int style Widget_Compat_NotificationActionText 0x7f0f0170
-int style Widget_Design_AppBarLayout 0x7f0f0171
-int style Widget_Design_BottomNavigationView 0x7f0f0172
-int style Widget_Design_BottomSheet_Modal 0x7f0f0173
-int style Widget_Design_CollapsingToolbar 0x7f0f0174
-int style Widget_Design_CoordinatorLayout 0x7f0f0175
-int style Widget_Design_FloatingActionButton 0x7f0f0176
-int style Widget_Design_NavigationView 0x7f0f0177
-int style Widget_Design_ScrimInsetsFrameLayout 0x7f0f0178
-int style Widget_Design_Snackbar 0x7f0f0179
-int style Widget_Design_TabLayout 0x7f0f017a
-int style Widget_Design_TextInputLayout 0x7f0f017b
-int style Widget_Support_CoordinatorLayout 0x7f0f017c
-int[] styleable ActionBar { 0x7f040031, 0x7f040032, 0x7f040033, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f04006e, 0x7f040072, 0x7f040073, 0x7f04007e, 0x7f04009f, 0x7f0400a0, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400ab, 0x7f0400b1, 0x7f0400cc, 0x7f0400d7, 0x7f0400e7, 0x7f0400eb, 0x7f0400ec, 0x7f040110, 0x7f040113, 0x7f04013f, 0x7f040149 }
-int styleable ActionBar_background 0
-int styleable ActionBar_backgroundSplit 1
-int styleable ActionBar_backgroundStacked 2
-int styleable ActionBar_contentInsetEnd 3
-int styleable ActionBar_contentInsetEndWithActions 4
-int styleable ActionBar_contentInsetLeft 5
-int styleable ActionBar_contentInsetRight 6
-int styleable ActionBar_contentInsetStart 7
-int styleable ActionBar_contentInsetStartWithNavigation 8
-int styleable ActionBar_customNavigationLayout 9
-int styleable ActionBar_displayOptions 10
-int styleable ActionBar_divider 11
-int styleable ActionBar_elevation 12
-int styleable ActionBar_height 13
-int styleable ActionBar_hideOnContentScroll 14
-int styleable ActionBar_homeAsUpIndicator 15
-int styleable ActionBar_homeLayout 16
-int styleable ActionBar_icon 17
-int styleable ActionBar_indeterminateProgressStyle 18
-int styleable ActionBar_itemPadding 19
-int styleable ActionBar_logo 20
-int styleable ActionBar_navigationMode 21
-int styleable ActionBar_popupTheme 22
-int styleable ActionBar_progressBarPadding 23
-int styleable ActionBar_progressBarStyle 24
-int styleable ActionBar_subtitle 25
-int styleable ActionBar_subtitleTextStyle 26
-int styleable ActionBar_title 27
-int styleable ActionBar_titleTextStyle 28
-int[] styleable ActionBarLayout { 0x010100b3 }
-int styleable ActionBarLayout_android_layout_gravity 0
-int[] styleable ActionMenuItemView { 0x0101013f }
-int styleable ActionMenuItemView_android_minWidth 0
-int[] styleable ActionMenuView { }
-int[] styleable ActionMode { 0x7f040031, 0x7f040032, 0x7f04004f, 0x7f04009f, 0x7f040113, 0x7f040149 }
-int styleable ActionMode_background 0
-int styleable ActionMode_backgroundSplit 1
-int styleable ActionMode_closeItemLayout 2
-int styleable ActionMode_height 3
-int styleable ActionMode_subtitleTextStyle 4
-int styleable ActionMode_titleTextStyle 5
-int[] styleable ActivityChooserView { 0x7f040081, 0x7f0400ac }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
-int styleable ActivityChooserView_initialActivityCount 1
-int[] styleable AlertDialog { 0x010100f2, 0x7f040046, 0x7f040047, 0x7f0400c3, 0x7f0400c4, 0x7f0400d4, 0x7f040100, 0x7f040101 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonIconDimen 1
-int styleable AlertDialog_buttonPanelSideLayout 2
-int styleable AlertDialog_listItemLayout 3
-int styleable AlertDialog_listLayout 4
-int styleable AlertDialog_multiChoiceItemLayout 5
-int styleable AlertDialog_showTitle 6
-int styleable AlertDialog_singleChoiceItemLayout 7
-int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f04007e, 0x7f040082 }
-int styleable AppBarLayout_android_background 0
-int styleable AppBarLayout_android_touchscreenBlocksFocus 1
-int styleable AppBarLayout_android_keyboardNavigationCluster 2
-int styleable AppBarLayout_elevation 3
-int styleable AppBarLayout_expanded 4
-int[] styleable AppBarLayoutStates { 0x7f04010a, 0x7f04010b }
-int styleable AppBarLayoutStates_state_collapsed 0
-int styleable AppBarLayoutStates_state_collapsible 1
-int[] styleable AppBarLayout_Layout { 0x7f0400bf, 0x7f0400c0 }
-int styleable AppBarLayout_Layout_layout_scrollFlags 0
-int styleable AppBarLayout_Layout_layout_scrollInterpolator 1
-int[] styleable AppCompatImageView { 0x01010119, 0x7f040107, 0x7f04013d, 0x7f04013e }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int styleable AppCompatImageView_tint 2
-int styleable AppCompatImageView_tintMode 3
-int[] styleable AppCompatSeekBar { 0x01010142, 0x7f04013a, 0x7f04013b, 0x7f04013c }
-int styleable AppCompatSeekBar_android_thumb 0
-int styleable AppCompatSeekBar_tickMark 1
-int styleable AppCompatSeekBar_tickMarkTint 2
-int styleable AppCompatSeekBar_tickMarkTintMode 3
-int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
-int styleable AppCompatTextHelper_android_textAppearance 0
-int styleable AppCompatTextHelper_android_drawableTop 1
-int styleable AppCompatTextHelper_android_drawableBottom 2
-int styleable AppCompatTextHelper_android_drawableLeft 3
-int styleable AppCompatTextHelper_android_drawableRight 4
-int styleable AppCompatTextHelper_android_drawableStart 5
-int styleable AppCompatTextHelper_android_drawableEnd 6
-int[] styleable AppCompatTextView { 0x01010034, 0x7f04002c, 0x7f04002d, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040092, 0x7f040129 }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_autoSizeMaxTextSize 1
-int styleable AppCompatTextView_autoSizeMinTextSize 2
-int styleable AppCompatTextView_autoSizePresetSizes 3
-int styleable AppCompatTextView_autoSizeStepGranularity 4
-int styleable AppCompatTextView_autoSizeTextType 5
-int styleable AppCompatTextView_fontFamily 6
-int styleable AppCompatTextView_textAllCaps 7
-int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f040000, 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f04002b, 0x7f04003d, 0x7f040040, 0x7f040041, 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040048, 0x7f040049, 0x7f04004c, 0x7f04004d, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f040068, 0x7f040070, 0x7f040071, 0x7f040074, 0x7f040076, 0x7f040079, 0x7f04007a, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f0400a4, 0x7f0400aa, 0x7f0400c1, 0x7f0400c2, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e6, 0x7f0400e8, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fc, 0x7f040104, 0x7f040105, 0x7f040117, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f040134, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f04014e, 0x7f040154, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f }
-int styleable AppCompatTheme_android_windowIsFloating 0
-int styleable AppCompatTheme_android_windowAnimationStyle 1
-int styleable AppCompatTheme_actionBarDivider 2
-int styleable AppCompatTheme_actionBarItemBackground 3
-int styleable AppCompatTheme_actionBarPopupTheme 4
-int styleable AppCompatTheme_actionBarSize 5
-int styleable AppCompatTheme_actionBarSplitStyle 6
-int styleable AppCompatTheme_actionBarStyle 7
-int styleable AppCompatTheme_actionBarTabBarStyle 8
-int styleable AppCompatTheme_actionBarTabStyle 9
-int styleable AppCompatTheme_actionBarTabTextStyle 10
-int styleable AppCompatTheme_actionBarTheme 11
-int styleable AppCompatTheme_actionBarWidgetTheme 12
-int styleable AppCompatTheme_actionButtonStyle 13
-int styleable AppCompatTheme_actionDropDownStyle 14
-int styleable AppCompatTheme_actionMenuTextAppearance 15
-int styleable AppCompatTheme_actionMenuTextColor 16
-int styleable AppCompatTheme_actionModeBackground 17
-int styleable AppCompatTheme_actionModeCloseButtonStyle 18
-int styleable AppCompatTheme_actionModeCloseDrawable 19
-int styleable AppCompatTheme_actionModeCopyDrawable 20
-int styleable AppCompatTheme_actionModeCutDrawable 21
-int styleable AppCompatTheme_actionModeFindDrawable 22
-int styleable AppCompatTheme_actionModePasteDrawable 23
-int styleable AppCompatTheme_actionModePopupWindowStyle 24
-int styleable AppCompatTheme_actionModeSelectAllDrawable 25
-int styleable AppCompatTheme_actionModeShareDrawable 26
-int styleable AppCompatTheme_actionModeSplitBackground 27
-int styleable AppCompatTheme_actionModeStyle 28
-int styleable AppCompatTheme_actionModeWebSearchDrawable 29
-int styleable AppCompatTheme_actionOverflowButtonStyle 30
-int styleable AppCompatTheme_actionOverflowMenuStyle 31
-int styleable AppCompatTheme_activityChooserViewStyle 32
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
-int styleable AppCompatTheme_alertDialogCenterButtons 34
-int styleable AppCompatTheme_alertDialogStyle 35
-int styleable AppCompatTheme_alertDialogTheme 36
-int styleable AppCompatTheme_autoCompleteTextViewStyle 37
-int styleable AppCompatTheme_borderlessButtonStyle 38
-int styleable AppCompatTheme_buttonBarButtonStyle 39
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
-int styleable AppCompatTheme_buttonBarStyle 43
-int styleable AppCompatTheme_buttonStyle 44
-int styleable AppCompatTheme_buttonStyleSmall 45
-int styleable AppCompatTheme_checkboxStyle 46
-int styleable AppCompatTheme_checkedTextViewStyle 47
-int styleable AppCompatTheme_colorAccent 48
-int styleable AppCompatTheme_colorBackgroundFloating 49
-int styleable AppCompatTheme_colorButtonNormal 50
-int styleable AppCompatTheme_colorControlActivated 51
-int styleable AppCompatTheme_colorControlHighlight 52
-int styleable AppCompatTheme_colorControlNormal 53
-int styleable AppCompatTheme_colorError 54
-int styleable AppCompatTheme_colorPrimary 55
-int styleable AppCompatTheme_colorPrimaryDark 56
-int styleable AppCompatTheme_colorSwitchThumbNormal 57
-int styleable AppCompatTheme_controlBackground 58
-int styleable AppCompatTheme_dialogPreferredPadding 59
-int styleable AppCompatTheme_dialogTheme 60
-int styleable AppCompatTheme_dividerHorizontal 61
-int styleable AppCompatTheme_dividerVertical 62
-int styleable AppCompatTheme_dropDownListViewStyle 63
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 64
-int styleable AppCompatTheme_editTextBackground 65
-int styleable AppCompatTheme_editTextColor 66
-int styleable AppCompatTheme_editTextStyle 67
-int styleable AppCompatTheme_homeAsUpIndicator 68
-int styleable AppCompatTheme_imageButtonStyle 69
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 70
-int styleable AppCompatTheme_listDividerAlertDialog 71
-int styleable AppCompatTheme_listMenuViewStyle 72
-int styleable AppCompatTheme_listPopupWindowStyle 73
-int styleable AppCompatTheme_listPreferredItemHeight 74
-int styleable AppCompatTheme_listPreferredItemHeightLarge 75
-int styleable AppCompatTheme_listPreferredItemHeightSmall 76
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 77
-int styleable AppCompatTheme_listPreferredItemPaddingRight 78
-int styleable AppCompatTheme_panelBackground 79
-int styleable AppCompatTheme_panelMenuListTheme 80
-int styleable AppCompatTheme_panelMenuListWidth 81
-int styleable AppCompatTheme_popupMenuStyle 82
-int styleable AppCompatTheme_popupWindowStyle 83
-int styleable AppCompatTheme_radioButtonStyle 84
-int styleable AppCompatTheme_ratingBarStyle 85
-int styleable AppCompatTheme_ratingBarStyleIndicator 86
-int styleable AppCompatTheme_ratingBarStyleSmall 87
-int styleable AppCompatTheme_searchViewStyle 88
-int styleable AppCompatTheme_seekBarStyle 89
-int styleable AppCompatTheme_selectableItemBackground 90
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 91
-int styleable AppCompatTheme_spinnerDropDownItemStyle 92
-int styleable AppCompatTheme_spinnerStyle 93
-int styleable AppCompatTheme_switchStyle 94
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 95
-int styleable AppCompatTheme_textAppearanceListItem 96
-int styleable AppCompatTheme_textAppearanceListItemSecondary 97
-int styleable AppCompatTheme_textAppearanceListItemSmall 98
-int styleable AppCompatTheme_textAppearancePopupMenuHeader 99
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 101
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102
-int styleable AppCompatTheme_textColorAlertDialogListItem 103
-int styleable AppCompatTheme_textColorSearchUrl 104
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 105
-int styleable AppCompatTheme_toolbarStyle 106
-int styleable AppCompatTheme_tooltipForegroundColor 107
-int styleable AppCompatTheme_tooltipFrameBackground 108
-int styleable AppCompatTheme_viewInflaterClass 109
-int styleable AppCompatTheme_windowActionBar 110
-int styleable AppCompatTheme_windowActionBarOverlay 111
-int styleable AppCompatTheme_windowActionModeOverlay 112
-int styleable AppCompatTheme_windowFixedHeightMajor 113
-int styleable AppCompatTheme_windowFixedHeightMinor 114
-int styleable AppCompatTheme_windowFixedWidthMajor 115
-int styleable AppCompatTheme_windowFixedWidthMinor 116
-int styleable AppCompatTheme_windowMinWidthMajor 117
-int styleable AppCompatTheme_windowMinWidthMinor 118
-int styleable AppCompatTheme_windowNoTitle 119
-int[] styleable BottomNavigationView { 0x7f04007e, 0x7f0400af, 0x7f0400b0, 0x7f0400b3, 0x7f0400d1 }
-int styleable BottomNavigationView_elevation 0
-int styleable BottomNavigationView_itemBackground 1
-int styleable BottomNavigationView_itemIconTint 2
-int styleable BottomNavigationView_itemTextColor 3
-int styleable BottomNavigationView_menu 4
-int[] styleable BottomSheetBehavior_Layout { 0x7f040038, 0x7f04003a, 0x7f04003b }
-int styleable BottomSheetBehavior_Layout_behavior_hideable 0
-int styleable BottomSheetBehavior_Layout_behavior_peekHeight 1
-int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 2
-int[] styleable ButtonBarContainerTheme { 0x7f0400d2, 0x7f0400d3 }
-int styleable ButtonBarContainerTheme_metaButtonBarButtonStyle 0
-int styleable ButtonBarContainerTheme_metaButtonBarStyle 1
-int[] styleable ButtonBarLayout { 0x7f040026 }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable CollapsingToolbarLayout { 0x7f040052, 0x7f040053, 0x7f040067, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f040086, 0x7f040087, 0x7f040088, 0x7f040089, 0x7f0400f5, 0x7f0400f6, 0x7f04010d, 0x7f04013f, 0x7f040140, 0x7f04014a }
-int styleable CollapsingToolbarLayout_collapsedTitleGravity 0
-int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1
-int styleable CollapsingToolbarLayout_contentScrim 2
-int styleable CollapsingToolbarLayout_expandedTitleGravity 3
-int styleable CollapsingToolbarLayout_expandedTitleMargin 4
-int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
-int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6
-int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7
-int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8
-int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9
-int styleable CollapsingToolbarLayout_scrimAnimationDuration 10
-int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 11
-int styleable CollapsingToolbarLayout_statusBarScrim 12
-int styleable CollapsingToolbarLayout_title 13
-int styleable CollapsingToolbarLayout_titleEnabled 14
-int styleable CollapsingToolbarLayout_toolbarId 15
-int[] styleable CollapsingToolbarLayout_Layout { 0x7f0400ba, 0x7f0400bb }
-int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
-int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
-int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f040027 }
-int styleable ColorStateListItem_android_color 0
-int styleable ColorStateListItem_android_alpha 1
-int styleable ColorStateListItem_alpha 2
-int[] styleable CompoundButton { 0x01010107, 0x7f04004a, 0x7f04004b }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonTint 1
-int styleable CompoundButton_buttonTintMode 2
-int[] styleable CoordinatorLayout { 0x7f0400b4, 0x7f04010c }
-int styleable CoordinatorLayout_keylines 0
-int styleable CoordinatorLayout_statusBarBackground 1
-int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400bc, 0x7f0400bd, 0x7f0400be }
-int styleable CoordinatorLayout_Layout_android_layout_gravity 0
-int styleable CoordinatorLayout_Layout_layout_anchor 1
-int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
-int styleable CoordinatorLayout_Layout_layout_behavior 3
-int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
-int styleable CoordinatorLayout_Layout_layout_insetEdge 5
-int styleable CoordinatorLayout_Layout_layout_keyline 6
-int[] styleable DesignTheme { 0x7f04003e, 0x7f04003f, 0x7f040133 }
-int styleable DesignTheme_bottomSheetDialogTheme 0
-int styleable DesignTheme_bottomSheetStyle 1
-int styleable DesignTheme_textColorError 2
-int[] styleable DrawerArrowToggle { 0x7f040029, 0x7f04002a, 0x7f040036, 0x7f040054, 0x7f040077, 0x7f04009c, 0x7f040103, 0x7f040136 }
-int styleable DrawerArrowToggle_arrowHeadLength 0
-int styleable DrawerArrowToggle_arrowShaftLength 1
-int styleable DrawerArrowToggle_barLength 2
-int styleable DrawerArrowToggle_color 3
-int styleable DrawerArrowToggle_drawableSize 4
-int styleable DrawerArrowToggle_gapBetweenBars 5
-int styleable DrawerArrowToggle_spinBars 6
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable FloatingActionButton { 0x7f040034, 0x7f040035, 0x7f04003c, 0x7f04007e, 0x7f04008a, 0x7f04008b, 0x7f0400ea, 0x7f0400f4, 0x7f040153 }
-int styleable FloatingActionButton_backgroundTint 0
-int styleable FloatingActionButton_backgroundTintMode 1
-int styleable FloatingActionButton_borderWidth 2
-int styleable FloatingActionButton_elevation 3
-int styleable FloatingActionButton_fabCustomSize 4
-int styleable FloatingActionButton_fabSize 5
-int styleable FloatingActionButton_pressedTranslationZ 6
-int styleable FloatingActionButton_rippleColor 7
-int styleable FloatingActionButton_useCompatPadding 8
-int[] styleable FloatingActionButton_Behavior_Layout { 0x7f040037 }
-int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
-int[] styleable FontFamily { 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098 }
-int styleable FontFamily_fontProviderAuthority 0
-int styleable FontFamily_fontProviderCerts 1
-int styleable FontFamily_fontProviderFetchStrategy 2
-int styleable FontFamily_fontProviderFetchTimeout 3
-int styleable FontFamily_fontProviderPackage 4
-int styleable FontFamily_fontProviderQuery 5
-int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x7f040091, 0x7f040099, 0x7f04009a }
-int styleable FontFamilyFont_android_font 0
-int styleable FontFamilyFont_android_fontWeight 1
-int styleable FontFamilyFont_android_fontStyle 2
-int styleable FontFamilyFont_font 3
-int styleable FontFamilyFont_fontStyle 4
-int styleable FontFamilyFont_fontWeight 5
-int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f04009b }
-int styleable ForegroundLinearLayout_android_foreground 0
-int styleable ForegroundLinearLayout_android_foregroundGravity 1
-int styleable ForegroundLinearLayout_foregroundInsidePadding 2
-int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f040073, 0x7f040075, 0x7f0400d0, 0x7f0400fe }
-int styleable LinearLayoutCompat_android_gravity 0
-int styleable LinearLayoutCompat_android_orientation 1
-int styleable LinearLayoutCompat_android_baselineAligned 2
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 6
-int styleable LinearLayoutCompat_measureWithLargestChild 7
-int styleable LinearLayoutCompat_showDividers 8
-int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_width 1
-int styleable LinearLayoutCompat_Layout_android_layout_height 2
-int styleable LinearLayoutCompat_Layout_android_layout_weight 3
-int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
-int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
-int styleable ListPopupWindow_android_dropDownVerticalOffset 1
-int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
-int styleable MenuGroup_android_enabled 0
-int styleable MenuGroup_android_id 1
-int styleable MenuGroup_android_visible 2
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_checkableBehavior 5
-int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f04000d, 0x7f04001f, 0x7f040020, 0x7f040028, 0x7f040060, 0x7f0400a7, 0x7f0400a8, 0x7f0400d8, 0x7f0400fd, 0x7f04014f }
-int styleable MenuItem_android_icon 0
-int styleable MenuItem_android_enabled 1
-int styleable MenuItem_android_id 2
-int styleable MenuItem_android_checked 3
-int styleable MenuItem_android_visible 4
-int styleable MenuItem_android_menuCategory 5
-int styleable MenuItem_android_orderInCategory 6
-int styleable MenuItem_android_title 7
-int styleable MenuItem_android_titleCondensed 8
-int styleable MenuItem_android_alphabeticShortcut 9
-int styleable MenuItem_android_numericShortcut 10
-int styleable MenuItem_android_checkable 11
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_actionLayout 13
-int styleable MenuItem_actionProviderClass 14
-int styleable MenuItem_actionViewClass 15
-int styleable MenuItem_alphabeticModifiers 16
-int styleable MenuItem_contentDescription 17
-int styleable MenuItem_iconTint 18
-int styleable MenuItem_iconTintMode 19
-int styleable MenuItem_numericModifiers 20
-int styleable MenuItem_showAsAction 21
-int styleable MenuItem_tooltipText 22
-int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0400e9, 0x7f04010e }
-int styleable MenuView_android_windowAnimationStyle 0
-int styleable MenuView_android_itemTextAppearance 1
-int styleable MenuView_android_horizontalDivider 2
-int styleable MenuView_android_verticalDivider 3
-int styleable MenuView_android_headerBackground 4
-int styleable MenuView_android_itemBackground 5
-int styleable MenuView_android_itemIconDisabledAlpha 6
-int styleable MenuView_preserveIconSpacing 7
-int styleable MenuView_subMenuArrow 8
-int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f04007e, 0x7f04009e, 0x7f0400af, 0x7f0400b0, 0x7f0400b2, 0x7f0400b3, 0x7f0400d1 }
-int styleable NavigationView_android_background 0
-int styleable NavigationView_android_fitsSystemWindows 1
-int styleable NavigationView_android_maxWidth 2
-int styleable NavigationView_elevation 3
-int styleable NavigationView_headerLayout 4
-int styleable NavigationView_itemBackground 5
-int styleable NavigationView_itemIconTint 6
-int styleable NavigationView_itemTextAppearance 7
-int styleable NavigationView_itemTextColor 8
-int styleable NavigationView_menu 9
-int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0400d9 }
-int styleable PopupWindow_android_popupBackground 0
-int styleable PopupWindow_android_popupAnimationStyle 1
-int styleable PopupWindow_overlapAnchor 2
-int[] styleable PopupWindowBackgroundState { 0x7f040109 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable RecycleListView { 0x7f0400da, 0x7f0400dd }
-int styleable RecycleListView_paddingBottomNoButtons 0
-int styleable RecycleListView_paddingTopNoTitle 1
-int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f04008c, 0x7f04008d, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f0400b6, 0x7f0400f3, 0x7f040102, 0x7f040108 }
-int styleable RecyclerView_android_orientation 0
-int styleable RecyclerView_android_descendantFocusability 1
-int styleable RecyclerView_fastScrollEnabled 2
-int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
-int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
-int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
-int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
-int styleable RecyclerView_layoutManager 7
-int styleable RecyclerView_reverseLayout 8
-int styleable RecyclerView_spanCount 9
-int styleable RecyclerView_stackFromEnd 10
-int[] styleable ScrimInsetsFrameLayout { 0x7f0400ad }
-int styleable ScrimInsetsFrameLayout_insetForeground 0
-int[] styleable ScrollingViewBehavior_Layout { 0x7f040039 }
-int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
-int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f04004e, 0x7f04005f, 0x7f04006f, 0x7f04009d, 0x7f0400a9, 0x7f0400b5, 0x7f0400ed, 0x7f0400ee, 0x7f0400f7, 0x7f0400f8, 0x7f04010f, 0x7f040114, 0x7f040155 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_maxWidth 1
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_imeOptions 3
-int styleable SearchView_closeIcon 4
-int styleable SearchView_commitIcon 5
-int styleable SearchView_defaultQueryHint 6
-int styleable SearchView_goIcon 7
-int styleable SearchView_iconifiedByDefault 8
-int styleable SearchView_layout 9
-int styleable SearchView_queryBackground 10
-int styleable SearchView_queryHint 11
-int styleable SearchView_searchHintIcon 12
-int styleable SearchView_searchIcon 13
-int styleable SearchView_submitBackground 14
-int styleable SearchView_suggestionRowLayout 15
-int styleable SearchView_voiceIcon 16
-int[] styleable SnackbarLayout { 0x0101011f, 0x7f04007e, 0x7f0400ce }
-int styleable SnackbarLayout_android_maxWidth 0
-int styleable SnackbarLayout_elevation 1
-int styleable SnackbarLayout_maxActionInlineWidth 2
-int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0400e7 }
-int styleable Spinner_android_entries 0
-int styleable Spinner_android_popupBackground 1
-int styleable Spinner_android_prompt 2
-int styleable Spinner_android_dropDownWidth 3
-int styleable Spinner_popupTheme 4
-int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0400ff, 0x7f040106, 0x7f040115, 0x7f040116, 0x7f040118, 0x7f040137, 0x7f040138, 0x7f040139, 0x7f040150, 0x7f040151, 0x7f040152 }
-int styleable SwitchCompat_android_textOn 0
-int styleable SwitchCompat_android_textOff 1
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 3
-int styleable SwitchCompat_splitTrack 4
-int styleable SwitchCompat_switchMinWidth 5
-int styleable SwitchCompat_switchPadding 6
-int styleable SwitchCompat_switchTextAppearance 7
-int styleable SwitchCompat_thumbTextPadding 8
-int styleable SwitchCompat_thumbTint 9
-int styleable SwitchCompat_thumbTintMode 10
-int styleable SwitchCompat_track 11
-int styleable SwitchCompat_trackTint 12
-int styleable SwitchCompat_trackTintMode 13
-int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f }
-int styleable TabItem_android_icon 0
-int styleable TabItem_android_layout 1
-int styleable TabItem_android_text 2
-int[] styleable TabLayout { 0x7f040119, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f04011e, 0x7f04011f, 0x7f040120, 0x7f040121, 0x7f040122, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128 }
-int styleable TabLayout_tabBackground 0
-int styleable TabLayout_tabContentStart 1
-int styleable TabLayout_tabGravity 2
-int styleable TabLayout_tabIndicatorColor 3
-int styleable TabLayout_tabIndicatorHeight 4
-int styleable TabLayout_tabMaxWidth 5
-int styleable TabLayout_tabMinWidth 6
-int styleable TabLayout_tabMode 7
-int styleable TabLayout_tabPadding 8
-int styleable TabLayout_tabPaddingBottom 9
-int styleable TabLayout_tabPaddingEnd 10
-int styleable TabLayout_tabPaddingStart 11
-int styleable TabLayout_tabPaddingTop 12
-int styleable TabLayout_tabSelectedTextColor 13
-int styleable TabLayout_tabTextAppearance 14
-int styleable TabLayout_tabTextColor 15
-int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f040092, 0x7f040129 }
-int styleable TextAppearance_android_textSize 0
-int styleable TextAppearance_android_typeface 1
-int styleable TextAppearance_android_textStyle 2
-int styleable TextAppearance_android_textColor 3
-int styleable TextAppearance_android_textColorHint 4
-int styleable TextAppearance_android_textColorLink 5
-int styleable TextAppearance_android_shadowColor 6
-int styleable TextAppearance_android_shadowDx 7
-int styleable TextAppearance_android_shadowDy 8
-int styleable TextAppearance_android_shadowRadius 9
-int styleable TextAppearance_android_fontFamily 10
-int styleable TextAppearance_fontFamily 11
-int styleable TextAppearance_textAllCaps 12
-int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04007f, 0x7f040080, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5 }
-int styleable TextInputLayout_android_textColorHint 0
-int styleable TextInputLayout_android_hint 1
-int styleable TextInputLayout_counterEnabled 2
-int styleable TextInputLayout_counterMaxLength 3
-int styleable TextInputLayout_counterOverflowTextAppearance 4
-int styleable TextInputLayout_counterTextAppearance 5
-int styleable TextInputLayout_errorEnabled 6
-int styleable TextInputLayout_errorTextAppearance 7
-int styleable TextInputLayout_hintAnimationEnabled 8
-int styleable TextInputLayout_hintEnabled 9
-int styleable TextInputLayout_hintTextAppearance 10
-int styleable TextInputLayout_passwordToggleContentDescription 11
-int styleable TextInputLayout_passwordToggleDrawable 12
-int styleable TextInputLayout_passwordToggleEnabled 13
-int styleable TextInputLayout_passwordToggleTint 14
-int styleable TextInputLayout_passwordToggleTintMode 15
-int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f040045, 0x7f040050, 0x7f040051, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f0400cc, 0x7f0400cd, 0x7f0400cf, 0x7f0400d5, 0x7f0400d6, 0x7f0400e7, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f04013f, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148 }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_buttonGravity 2
-int styleable Toolbar_collapseContentDescription 3
-int styleable Toolbar_collapseIcon 4
-int styleable Toolbar_contentInsetEnd 5
-int styleable Toolbar_contentInsetEndWithActions 6
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 9
-int styleable Toolbar_contentInsetStartWithNavigation 10
-int styleable Toolbar_logo 11
-int styleable Toolbar_logoDescription 12
-int styleable Toolbar_maxButtonHeight 13
-int styleable Toolbar_navigationContentDescription 14
-int styleable Toolbar_navigationIcon 15
-int styleable Toolbar_popupTheme 16
-int styleable Toolbar_subtitle 17
-int styleable Toolbar_subtitleTextAppearance 18
-int styleable Toolbar_subtitleTextColor 19
-int styleable Toolbar_title 20
-int styleable Toolbar_titleMargin 21
-int styleable Toolbar_titleMarginBottom 22
-int styleable Toolbar_titleMarginEnd 23
-int styleable Toolbar_titleMarginStart 24
-int styleable Toolbar_titleMarginTop 25
-int styleable Toolbar_titleMargins 26
-int styleable Toolbar_titleTextAppearance 27
-int styleable Toolbar_titleTextColor 28
-int[] styleable View { 0x01010000, 0x010100da, 0x7f0400db, 0x7f0400dc, 0x7f040135 }
-int styleable View_android_theme 0
-int styleable View_android_focusable 1
-int styleable View_paddingEnd 2
-int styleable View_paddingStart 3
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f040034, 0x7f040035 }
-int styleable ViewBackgroundHelper_android_background 0
-int styleable ViewBackgroundHelper_backgroundTint 1
-int styleable ViewBackgroundHelper_backgroundTintMode 2
-int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
-int styleable ViewStubCompat_android_id 0
-int styleable ViewStubCompat_android_layout 1
-int styleable ViewStubCompat_android_inflatedId 2
-int xml preferences 0x7f110000
-int xml provider_paths 0x7f110001
diff --git a/app/build/outputs/logs/manifest-merger-debug-report.txt b/app/build/outputs/logs/manifest-merger-debug-report.txt
index 23ff871..a5ecebe 100644
--- a/app/build/outputs/logs/manifest-merger-debug-report.txt
+++ b/app/build/outputs/logs/manifest-merger-debug-report.txt
@@ -1,253 +1,309 @@
-- Merging decision tree log ---
provider#android.support.v4.content.FileProvider
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:33:9-41:20
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:33:9-41:20
android:grantUriPermissions
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:37:13-47
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:37:13-47
android:authorities
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:35:13-60
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:35:13-60
android:exported
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:36:13-37
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:36:13-37
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:34:13-67
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:34:13-67
manifest
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:3:1-31:12
-MERGED from [com.android.support:design:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\d74ddbf40aca631d8707f675b8757699\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:appcompat-v7:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\8b62c1d71ebbb3a1c8ba8b9b92cff31f\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-v4:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\00de0eb3de15f59b8ab9d494293d2d99\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:recyclerview-v7:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b1be3b74a31f198a141c5681521e1380\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:transition:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\445cae9b85bab304dadfbdfc6455643d\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-media-compat:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9740449c9dad082c8576cf5ef651d943\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-fragment:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f2c832a97fe60ae632b5108f732194ed\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:animated-vector-drawable:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\1193e7c648e39a64729ea2a6c5a82139\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-core-ui:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\941a276ecb00d54929312edd1c98a1d4\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-core-utils:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fcdebc27d5bb2d2f96fe50f6c9bec256\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-vector-drawable:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\60fa9b793131eeac36007e066b7bb86c\AndroidManifest.xml:17:1-22:12
-MERGED from [com.android.support:support-compat:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\136bb96c292bc0f3a4f1a9b3d37bcfeb\AndroidManifest.xml:17:1-22:12
-MERGED from [android.arch.lifecycle:runtime:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b809f2869bed60c737ed7d4405de5b38\AndroidManifest.xml:17:1-22:12
-MERGED from [android.arch.lifecycle:livedata-core:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9c33b1ce589efc1ab542a27b95a07e5c\AndroidManifest.xml:17:1-22:12
-MERGED from [android.arch.lifecycle:viewmodel:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\4e387e1317be1e7390c72667cf3c91b8\AndroidManifest.xml:17:1-22:12
-MERGED from [android.arch.core:runtime:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\7aa668d5939707f1b04ee95088cfc60a\AndroidManifest.xml:17:1-22:12
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+MERGED from [com.android.support:design:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cf839bbfa1028a161843089b1986521b\design-28.0.0\AndroidManifest.xml:17:1-24:12
+MERGED from [com.android.support:appcompat-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\77a93753076b9f3bf6b7921e3bb1ad58\appcompat-v7-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:support-v4:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\10d14bf2fdd27add456af6e8df3001f6\support-v4-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:recyclerview-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e83468088593accba3cf58b55eb8964b\recyclerview-v7-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:3:1-31:12
+MERGED from [com.android.support:support-fragment:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\364489e9c7df5b27ddd4c5587497594b\support-fragment-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:animated-vector-drawable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\8bdfad7e07e40cb22e8741ce1ef5fa31\animated-vector-drawable-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:support-core-ui:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fb2a2d11f829b33f009285b741af1a2f\support-core-ui-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:support-core-utils:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\1964e27cd626d82f1f68da12af3faf08\support-core-utils-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:support-vector-drawable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\ca3ec6b43f557b9c9fa3387a7465f577\support-vector-drawable-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:support-media-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\a38d372d79d017bebda0dbd4c4c0ad71\support-media-compat-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:transition:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\287ab7920917df54a03463f6274d2fa6\transition-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:loader:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f9d674eaf6b853e6a27bf843971b0531\loader-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:viewpager:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b01f3a6b7c5be78fcdf08c5b780f4ccf\viewpager-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:coordinatorlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\dd1204b854c009912b1ec72073074766\coordinatorlayout-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:drawerlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f64b6a631c902a54d9d7f9ee5d01231e\drawerlayout-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:slidingpanelayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cedbeb5a6f0ccf272ef561853bc2a140\slidingpanelayout-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:customview:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\91945d2376b8541f7a2b4d6b4d439929\customview-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:swiperefreshlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fa556222e27490c28b10feafc694743c\swiperefreshlayout-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:asynclayoutinflater:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\51b4c484d7b9605cc91a44b76df368a4\asynclayoutinflater-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:support-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0afe2f522ef770c256ea822f4578054c\support-compat-28.0.0\AndroidManifest.xml:17:1-24:12
+MERGED from [com.android.support:versionedparcelable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e96c233b9cbeda7e38289723f34c3d57\versionedparcelable-28.0.0\AndroidManifest.xml:17:1-25:12
+MERGED from [com.android.support:cursoradapter:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\88efc4ee4f34ff99e113f5291079b715\cursoradapter-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:cardview-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0e8eab2945b4d64c64dd6547a6d5ee81\cardview-v7-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [android.arch.lifecycle:runtime:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b5229703b39576e58a56d8e388a83947\runtime-1.1.1\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:documentfile:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\52392666878565afed65772c7731c0b3\documentfile-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:localbroadcastmanager:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\bf6072649b6da0b4b7b26ce6a1ebae07\localbroadcastmanager-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:print:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\30ba5970c6848f5745c95695f8757d6e\print-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [android.arch.lifecycle:viewmodel:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\7bffb607984d27523f533c6c1520b804\viewmodel-1.1.1\AndroidManifest.xml:17:1-22:12
+MERGED from [com.android.support:interpolator:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9bd795034eece87a4db7ca3289e28bfb\interpolator-28.0.0\AndroidManifest.xml:17:1-22:12
+MERGED from [android.arch.lifecycle:livedata:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\085f3060b64e25185d28f46f8598a2eb\livedata-1.1.1\AndroidManifest.xml:17:1-22:12
+MERGED from [android.arch.lifecycle:livedata-core:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fd578264dd355d7051ccddb2c89011b9\livedata-core-1.1.1\AndroidManifest.xml:17:1-22:12
+MERGED from [android.arch.core:runtime:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\c05f18e44289bef762017866af19cc6e\runtime-1.1.1\AndroidManifest.xml:17:1-22:12
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
package
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:3:5-23
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:3:5-23
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
android:versionName
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
android:versionCode
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
xmlns:android
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:11-69
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:11-69
uses-feature#android.hardware.camera
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:5:5-7:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:12:5-14:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:12:5-14:35
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:5:5-7:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:12:5-14:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:12:5-14:35
android:required
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:7:9-32
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:7:9-32
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:6:9-47
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:6:9-47
uses-feature#android.hardware.camera.autofocus
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:9:5-11:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:15:5-17:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:15:5-17:35
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:9:5-11:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:15:5-17:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:15:5-17:35
android:required
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:11:9-32
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:11:9-32
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:10:9-57
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:10:9-57
uses-feature#android.hardware.camera.flash
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:13:5-15:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:18:5-20:36
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:18:5-20:36
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:13:5-15:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:18:5-20:36
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:18:5-20:36
android:required
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:15:9-32
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:15:9-32
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:14:9-53
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:14:9-53
uses-feature#android.hardware.sensor.accelerometer
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:16:5-18:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:21:5-23:36
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:21:5-23:36
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:16:5-18:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:21:5-23:36
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:21:5-23:36
android:required
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:18:9-32
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:18:9-32
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:17:9-61
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:17:9-61
uses-feature#android.hardware.sensor.light
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:19:5-21:35
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:24:5-26:36
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:24:5-26:36
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:19:5-21:35
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:24:5-26:36
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:24:5-26:36
android:required
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:21:9-32
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:21:9-32
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:20:9-53
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:20:9-53
uses-permission#android.permission.INTERNET
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:23:5-67
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:23:5-67
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:23:22-64
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:23:22-64
uses-permission#android.permission.CAMERA
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:24:5-65
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:28:5-65
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:28:5-65
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:24:5-65
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:28:5-65
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:28:5-65
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:24:22-62
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:24:22-62
uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:25:5-81
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:29:5-81
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:29:5-81
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:25:5-81
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:29:5-81
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:29:5-81
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:25:22-78
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:25:22-78
uses-permission#android.permission.ACCESS_NETWORK_STATE
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:26:5-79
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:26:5-79
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:26:22-76
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:26:22-76
application
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:28:5-81:19
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:28:5-81:19
+MERGED from [com.android.support:design:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cf839bbfa1028a161843089b1986521b\design-28.0.0\AndroidManifest.xml:22:5-20
+MERGED from [com.android.support:design:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cf839bbfa1028a161843089b1986521b\design-28.0.0\AndroidManifest.xml:22:5-20
+MERGED from [com.android.support:support-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0afe2f522ef770c256ea822f4578054c\support-compat-28.0.0\AndroidManifest.xml:22:5-94
+MERGED from [com.android.support:support-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0afe2f522ef770c256ea822f4578054c\support-compat-28.0.0\AndroidManifest.xml:22:5-94
+MERGED from [com.android.support:versionedparcelable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e96c233b9cbeda7e38289723f34c3d57\versionedparcelable-28.0.0\AndroidManifest.xml:22:5-23:19
+MERGED from [com.android.support:versionedparcelable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e96c233b9cbeda7e38289723f34c3d57\versionedparcelable-28.0.0\AndroidManifest.xml:22:5-23:19
+ android:appComponentFactory
+ ADDED from [com.android.support:support-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0afe2f522ef770c256ea822f4578054c\support-compat-28.0.0\AndroidManifest.xml:22:18-91
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:31:9-41
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:31:9-41
android:icon
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:30:9-49
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:30:9-49
android:allowBackup
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:29:9-35
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:29:9-35
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:32:9-40
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:32:9-40
activity#otmobile.MainActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:42:9-45:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:42:9-45:57
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:44:13-51
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:44:13-51
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:45:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:45:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:43:13-49
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:43:13-49
activity#otmobile.EnhanceImageActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:46:9-49:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:46:9-49:57
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:48:13-55
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:48:13-55
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:49:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:49:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:47:13-57
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:47:13-57
activity#otmobile.EnhanceImageCropActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:50:9-53:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:50:9-53:57
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:52:13-59
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:52:13-59
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:53:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:53:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:51:13-61
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:51:13-61
activity#emc.captiva.mobile.sdk.QuadrilateralCropActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:54:9-57:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:54:9-57:57
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:56:13-63
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:56:13-63
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:57:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:57:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:55:13-76
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:55:13-76
activity#emc.captiva.mobile.sdk.CameraActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:59:9-62:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:59:9-62:57
android:configChanges
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:61:13-59
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:61:13-59
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:62:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:62:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:60:13-65
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:60:13-65
activity#otmobile.ImageInfoActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:63:9-66:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:63:9-66:57
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:65:13-52
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:65:13-52
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:66:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:66:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:64:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:64:13-54
activity#otmobile.SettingsActivity
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:67:9-70:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:67:9-70:57
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:69:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:69:13-54
android:theme
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:70:13-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:70:13-54
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:68:13-53
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:68:13-53
activity#otmobile.FirstScreen
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:71:9-79:20
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:71:9-79:20
android:label
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:73:13-45
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:73:13-45
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:72:13-48
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:72:13-48
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:74:13-78:29
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:74:13-78:29
action#android.intent.action.MAIN
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:75:17-69
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:75:17-69
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:75:25-66
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:75:25-66
category#android.intent.category.LAUNCHER
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:77:17-77
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:77:17-77
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:77:27-74
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:77:27-74
activity#otmobile.SnapResults
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:80:9-57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:80:9-57
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:80:19-54
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:80:19-54
uses-sdk
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml reason: use-sdk injection requested
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:8:5-10:41
-MERGED from [:captivamobilesdk] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\306c71b39770e649e0d7769ba5fd493e\AndroidManifest.xml:8:5-10:41
-MERGED from [com.android.support:design:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\d74ddbf40aca631d8707f675b8757699\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:design:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\d74ddbf40aca631d8707f675b8757699\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:appcompat-v7:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\8b62c1d71ebbb3a1c8ba8b9b92cff31f\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:appcompat-v7:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\8b62c1d71ebbb3a1c8ba8b9b92cff31f\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-v4:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\00de0eb3de15f59b8ab9d494293d2d99\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-v4:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\00de0eb3de15f59b8ab9d494293d2d99\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:recyclerview-v7:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b1be3b74a31f198a141c5681521e1380\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:recyclerview-v7:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b1be3b74a31f198a141c5681521e1380\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:transition:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\445cae9b85bab304dadfbdfc6455643d\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:transition:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\445cae9b85bab304dadfbdfc6455643d\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-media-compat:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9740449c9dad082c8576cf5ef651d943\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-media-compat:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9740449c9dad082c8576cf5ef651d943\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-fragment:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f2c832a97fe60ae632b5108f732194ed\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-fragment:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f2c832a97fe60ae632b5108f732194ed\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:animated-vector-drawable:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\1193e7c648e39a64729ea2a6c5a82139\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:animated-vector-drawable:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\1193e7c648e39a64729ea2a6c5a82139\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-core-ui:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\941a276ecb00d54929312edd1c98a1d4\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-core-ui:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\941a276ecb00d54929312edd1c98a1d4\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-core-utils:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fcdebc27d5bb2d2f96fe50f6c9bec256\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-core-utils:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fcdebc27d5bb2d2f96fe50f6c9bec256\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-vector-drawable:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\60fa9b793131eeac36007e066b7bb86c\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-vector-drawable:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\60fa9b793131eeac36007e066b7bb86c\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-compat:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\136bb96c292bc0f3a4f1a9b3d37bcfeb\AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-compat:27.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\136bb96c292bc0f3a4f1a9b3d37bcfeb\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.lifecycle:runtime:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b809f2869bed60c737ed7d4405de5b38\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.lifecycle:runtime:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b809f2869bed60c737ed7d4405de5b38\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.lifecycle:livedata-core:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9c33b1ce589efc1ab542a27b95a07e5c\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.lifecycle:livedata-core:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9c33b1ce589efc1ab542a27b95a07e5c\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.lifecycle:viewmodel:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\4e387e1317be1e7390c72667cf3c91b8\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.lifecycle:viewmodel:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\4e387e1317be1e7390c72667cf3c91b8\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.core:runtime:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\7aa668d5939707f1b04ee95088cfc60a\AndroidManifest.xml:20:5-44
-MERGED from [android.arch.core:runtime:1.1.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\7aa668d5939707f1b04ee95088cfc60a\AndroidManifest.xml:20:5-44
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
-INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+MERGED from [com.android.support:design:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cf839bbfa1028a161843089b1986521b\design-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:design:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cf839bbfa1028a161843089b1986521b\design-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:appcompat-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\77a93753076b9f3bf6b7921e3bb1ad58\appcompat-v7-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:appcompat-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\77a93753076b9f3bf6b7921e3bb1ad58\appcompat-v7-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-v4:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\10d14bf2fdd27add456af6e8df3001f6\support-v4-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-v4:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\10d14bf2fdd27add456af6e8df3001f6\support-v4-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:recyclerview-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e83468088593accba3cf58b55eb8964b\recyclerview-v7-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:recyclerview-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e83468088593accba3cf58b55eb8964b\recyclerview-v7-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:8:5-10:41
+MERGED from [:captivamobilesdk] C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\captivamobilesdk\build\.transforms\cdfe51acbb35aa53e35035d9868f540b\captivamobilesdk\AndroidManifest.xml:8:5-10:41
+MERGED from [com.android.support:support-fragment:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\364489e9c7df5b27ddd4c5587497594b\support-fragment-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-fragment:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\364489e9c7df5b27ddd4c5587497594b\support-fragment-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:animated-vector-drawable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\8bdfad7e07e40cb22e8741ce1ef5fa31\animated-vector-drawable-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:animated-vector-drawable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\8bdfad7e07e40cb22e8741ce1ef5fa31\animated-vector-drawable-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-core-ui:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fb2a2d11f829b33f009285b741af1a2f\support-core-ui-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-core-ui:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fb2a2d11f829b33f009285b741af1a2f\support-core-ui-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-core-utils:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\1964e27cd626d82f1f68da12af3faf08\support-core-utils-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-core-utils:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\1964e27cd626d82f1f68da12af3faf08\support-core-utils-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-vector-drawable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\ca3ec6b43f557b9c9fa3387a7465f577\support-vector-drawable-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-vector-drawable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\ca3ec6b43f557b9c9fa3387a7465f577\support-vector-drawable-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-media-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\a38d372d79d017bebda0dbd4c4c0ad71\support-media-compat-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-media-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\a38d372d79d017bebda0dbd4c4c0ad71\support-media-compat-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:transition:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\287ab7920917df54a03463f6274d2fa6\transition-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:transition:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\287ab7920917df54a03463f6274d2fa6\transition-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:loader:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f9d674eaf6b853e6a27bf843971b0531\loader-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:loader:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f9d674eaf6b853e6a27bf843971b0531\loader-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:viewpager:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b01f3a6b7c5be78fcdf08c5b780f4ccf\viewpager-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:viewpager:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b01f3a6b7c5be78fcdf08c5b780f4ccf\viewpager-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:coordinatorlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\dd1204b854c009912b1ec72073074766\coordinatorlayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:coordinatorlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\dd1204b854c009912b1ec72073074766\coordinatorlayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:drawerlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f64b6a631c902a54d9d7f9ee5d01231e\drawerlayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:drawerlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\f64b6a631c902a54d9d7f9ee5d01231e\drawerlayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:slidingpanelayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cedbeb5a6f0ccf272ef561853bc2a140\slidingpanelayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:slidingpanelayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\cedbeb5a6f0ccf272ef561853bc2a140\slidingpanelayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:customview:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\91945d2376b8541f7a2b4d6b4d439929\customview-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:customview:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\91945d2376b8541f7a2b4d6b4d439929\customview-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:swiperefreshlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fa556222e27490c28b10feafc694743c\swiperefreshlayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:swiperefreshlayout:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fa556222e27490c28b10feafc694743c\swiperefreshlayout-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:asynclayoutinflater:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\51b4c484d7b9605cc91a44b76df368a4\asynclayoutinflater-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:asynclayoutinflater:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\51b4c484d7b9605cc91a44b76df368a4\asynclayoutinflater-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0afe2f522ef770c256ea822f4578054c\support-compat-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:support-compat:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0afe2f522ef770c256ea822f4578054c\support-compat-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:versionedparcelable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e96c233b9cbeda7e38289723f34c3d57\versionedparcelable-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:versionedparcelable:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\e96c233b9cbeda7e38289723f34c3d57\versionedparcelable-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:cursoradapter:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\88efc4ee4f34ff99e113f5291079b715\cursoradapter-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:cursoradapter:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\88efc4ee4f34ff99e113f5291079b715\cursoradapter-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:cardview-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0e8eab2945b4d64c64dd6547a6d5ee81\cardview-v7-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:cardview-v7:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\0e8eab2945b4d64c64dd6547a6d5ee81\cardview-v7-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:runtime:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b5229703b39576e58a56d8e388a83947\runtime-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:runtime:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\b5229703b39576e58a56d8e388a83947\runtime-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:documentfile:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\52392666878565afed65772c7731c0b3\documentfile-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:documentfile:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\52392666878565afed65772c7731c0b3\documentfile-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:localbroadcastmanager:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\bf6072649b6da0b4b7b26ce6a1ebae07\localbroadcastmanager-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:localbroadcastmanager:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\bf6072649b6da0b4b7b26ce6a1ebae07\localbroadcastmanager-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:print:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\30ba5970c6848f5745c95695f8757d6e\print-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:print:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\30ba5970c6848f5745c95695f8757d6e\print-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:viewmodel:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\7bffb607984d27523f533c6c1520b804\viewmodel-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:viewmodel:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\7bffb607984d27523f533c6c1520b804\viewmodel-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:interpolator:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9bd795034eece87a4db7ca3289e28bfb\interpolator-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [com.android.support:interpolator:28.0.0] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\9bd795034eece87a4db7ca3289e28bfb\interpolator-28.0.0\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:livedata:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\085f3060b64e25185d28f46f8598a2eb\livedata-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:livedata:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\085f3060b64e25185d28f46f8598a2eb\livedata-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:livedata-core:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fd578264dd355d7051ccddb2c89011b9\livedata-core-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.lifecycle:livedata-core:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\fd578264dd355d7051ccddb2c89011b9\livedata-core-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.core:runtime:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\c05f18e44289bef762017866af19cc6e\runtime-1.1.1\AndroidManifest.xml:20:5-44
+MERGED from [android.arch.core:runtime:1.1.1] C:\Users\ghutchin\.gradle\caches\transforms-2\files-2.1\c05f18e44289bef762017866af19cc6e\runtime-1.1.1\AndroidManifest.xml:20:5-44
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
android:targetSdkVersion
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
android:minSdkVersion
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml
meta-data#android.support.FILE_PROVIDER_PATHS
-ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:38:13-40:57
+ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:38:13-40:57
android:resource
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:40:17-55
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:40:17-55
android:name
- ADDED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:39:17-67
+ ADDED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:39:17-67
uses-permission#android.permission.READ_EXTERNAL_STORAGE
-IMPLIED from C:\Users\ghutchin\StudioProjects\SnapMobileWIP\app\src\main\AndroidManifest.xml:2:1-83:12 reason: emc.captiva.mobile.sdk requested WRITE_EXTERNAL_STORAGE
+IMPLIED from C:\Users\ghutchin\StudioProjects\CoreCaptureMobile\app\src\main\AndroidManifest.xml:2:1-83:12 reason: emc.captiva.mobile.sdk requested WRITE_EXTERNAL_STORAGE
diff --git a/app/src/main/java/otmobile/SettingsActivity.java b/app/src/main/java/otmobile/SettingsActivity.java
index eaafb69..5814132 100644
--- a/app/src/main/java/otmobile/SettingsActivity.java
+++ b/app/src/main/java/otmobile/SettingsActivity.java
@@ -42,16 +42,16 @@ public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
String temp;
Integer i;
Float f;
- if (key.compareToIgnoreCase("Snap Environment") == 0) {
+ if (key.compareToIgnoreCase("Core Capture Environment") == 0) {
temp = L.getValue();
L.setValue(temp);
}
- if (key.compareToIgnoreCase("Snap Export Type") == 0) {
+ if (key.compareToIgnoreCase("Core Capture Export Type") == 0) {
temp = L.getValue();
L.setValue(temp);
}
- if (key.compareToIgnoreCase("Snap Data Centre") == 0) {
+ if (key.compareToIgnoreCase("Core Capture Data Centre") == 0) {
temp = L.getValue();
L.setValue(temp);
}
@@ -63,56 +63,56 @@ public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
String temp;
Integer i;
Float f;
- //Save the Snap Settings
- if (key.compareToIgnoreCase("SNAP_USER") == 0) {
+ //Save the Core Capture Settings
+ if (key.compareToIgnoreCase("CORECAPTURE_USER") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_PASSWORD") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_PASSWORD") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_URL") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_URL") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_SUBSCRIPTION") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_SUBSCRIPTION") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_CAPTURE_PROFILE") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_CAPTURE_PROFILE") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_RECOGNITION_PROJECT") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_RECOGNITION_PROJECT") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("snap_environment") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_environment") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("snap_export_type") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_export_type") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("snap_export_name") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_export_name") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("snap_IA_server") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_IA_server") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("snap_IA_catpureflow") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_IA_catpureflow") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_CLIENT") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_CLIENT") == 0) {
temp = pref.getText();
pref.setText(temp);
}
- if (key.compareToIgnoreCase("SNAP_SECRET") == 0) {
+ if (key.compareToIgnoreCase("CORECAPTURE_SECRET") == 0) {
temp = pref.getText();
pref.setText(temp);
}
diff --git a/app/src/main/res/layout/activity_first_screen.xml b/app/src/main/res/layout/activity_first_screen.xml
index 304a94c..2c4422e 100644
--- a/app/src/main/res/layout/activity_first_screen.xml
+++ b/app/src/main/res/layout/activity_first_screen.xml
@@ -27,7 +27,8 @@
android:clickable="true"
android:scaleType="fitCenter"
android:src="@android:drawable/ic_menu_preferences"
- app:backgroundTint="#00BCD4" />
+ app:backgroundTint="#00BCD4"
+ android:focusable="true" />
+ app:srcCompat="@drawable/leapsnap"
+ tools:srcCompat="@drawable/leapsnap"
+ android:contentDescription="TODO" />
+ app:backgroundTint="#3F51B5"
+ android:focusable="true" />
+ app:backgroundTint="#9C27B0"
+ android:focusable="true" />
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 72464b3..fdb63d2 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -2,45 +2,45 @@
* Copyright 2013-2016 EMC Corporation. All rights reserved.
-->
- Snap Data Centre
- Snap Environment
- Enter Your Snap Environment
- Snap Export Type
- Enter Your Snap Export Type
- Snap Export Profile Name
- Enter Your Snap Export Profile Name
- Captiva Server
- Enter Your Captiva Server Connection Name
- Captiva CaptureFlow
- Enter Your Captiva CaptureFlow Name
- Snap Profiles
- Capture Profile
- Snap Capture Profile Name
- Enter your Snap Capture Profile Name
- Recognition Project
- Snap Recognition Project Name
- Enter your Snap Recognition Project Name
+ Core Capture Data Centre
+ Core Capture Environment
+ Enter Your Core Capture Environment
+ Core Capture Export Type
+ Enter Your Core Capture Export Type
+ Core Capture Export Profile Name
+ Enter Your Core Capture Export Profile Name
+ Captiva Server
+ Enter Your Captiva Server Connection Name
+ Captiva CaptureFlow
+ Enter Your Captiva CaptureFlow Name
+ Core Capture Profiles
+ Capture Profile
+ Core Capture Capture Profile Name
+ Enter your Core Capture Capture Profile Name
+ Recognition Project
+ Core Capture Recognition Project Name
+ Enter your Core Capture Recognition Project Name
LICE036-S0PN-5110
APP9733-S507-6772
- Snap User
- Your Snap Username
- Enter your Snap Username
- Snap Password
- Your Snap Password
- Enter your Snap Password
- Snap URL
- Your Snap URL
- Enter Your Snap URL
- Snap Connection
- Snap Subscription
- Your Snap Subscription
- Enter Your Snap Subscription Name
- Snap Client
- Your Snap Client ID
- Enter Your Snap Client ID
- Snap Secret
- Your Snap Secret
- Enter Your Snap Secret
+ Core Capture User
+ Your Core Capture Username
+ Enter your Core Capture Username
+ Core Capture Password
+ Your Core Capture Password
+ Enter your Core Capture Password
+ Core Capture URL
+ Your Core Capture URL
+ Enter Your Core Capture URL
+ Core Capture Connection
+ Core Capture Subscription
+ Your Core Capture Subscription
+ Enter Your Core Capture Subscription Name
+ Core Capture Client
+ Your Core Capture Client ID
+ Enter Your Core Capture Client ID
+ Core Capture Secret
+ Your Core Capture Secret
+ Enter Your Core Capture Secret
Core Capture Mobile
Copyright 2013–2016 by EMC Corporation
@@ -253,7 +253,7 @@
Barcode Types
Configure types of barcodes to detect.
First Screen
- snap_results
+ corecapture_results
"Material is the metaphor.\n\n"
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml
index 80ab367..f12effe 100644
--- a/app/src/main/res/xml/preferences.xml
+++ b/app/src/main/res/xml/preferences.xml
@@ -6,81 +6,81 @@
+ android:key="@string/corecapture_settings"
+ android:title="@string/corecapture_settings">
+ android:key="@string/corecapture_profiles"
+ android:title="@string/corecapture_profiles">